Skip to content

Commit c7e8a66

Browse files
committed
[#712] Fix minor issue in EagerElementCollectionForEmbeddedEmbeddableMapTest
1 parent 227cea7 commit c7e8a66

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

hibernate-reactive-core/src/test/java/org/hibernate/reactive/EagerElementCollectionForEmbeddedEmbeddableMapTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -216,7 +216,7 @@ public void persistAnotherPersonWithStageAPI(TestContext context) {
216216
public void persistCollectionOfNullsWithStageAPI(TestContext context) {
217217
Person secondPerson = new Person( 9910000, "Kitty", new Phone( MOBILE, "123") );
218218
secondPerson.getAlternativePhones().put( "xxx", null );
219-
secondPerson.getAlternativePhones().put( "xxx", null );
219+
secondPerson.getAlternativePhones().put( "yyy", null );
220220

221221
Stage.Session session = openSession();
222222

0 commit comments

Comments
 (0)