We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c269054 commit c2be33dCopy full SHA for c2be33d
hibernate-core/src/test/java/org/hibernate/orm/test/mapping/access/ElementCollectionInOneToManyTest.java
@@ -71,7 +71,7 @@ void hhh13721Test(SessionFactoryScope scope) {
71
assertEquals( "author", author.name );
72
assertEquals( 1, author.books.size() );
73
74
- Book book = author.books.getFirst();
+ Book book = author.books.get( 0 );
75
assertEquals( "book", book.name );
76
assertEquals( 3, book.chapters.size() );
77
0 commit comments