Skip to content

Commit 2c607e4

Browse files
cigalysebersole
authored andcommitted
HHH-18322 Fixed compilation error in test case
1 parent 289ab0e commit 2c607e4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

hibernate-core/src/test/java/org/hibernate/orm/test/query/hql/instantiation/MatchingConstructorTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ public class MatchingConstructorTest {
2525
@BeforeAll
2626
public void prepareData(final SessionFactoryScope scope) {
2727
scope.inTransaction(
28-
session -> session.save( new TestEntity( 1, 42, "test", 13 ) )
28+
session -> session.persist( new TestEntity( 1, 42, "test", 13 ) )
2929
);
3030
}
3131

0 commit comments

Comments
 (0)