Skip to content

Commit 67f430f

Browse files
committed
HHH-19508 shorter table names in test
1 parent 20acc5c commit 67f430f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

hibernate-core/src/test/java/org/hibernate/orm/test/actionqueue/CollectionUpdateOrderingTest.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -48,14 +48,14 @@ void test(EntityManagerFactoryScope scope) {
4848
});
4949
}
5050

51-
@Entity
51+
@Entity(name = "Thing")
5252
static class Thing {
5353
@Id long id;
5454
@OneToMany(cascade = CascadeType.PERSIST)
5555
Set<OtherThing> otherThings = new HashSet<>();
5656
}
5757

58-
@Entity
58+
@Entity(name = "OtherThing")
5959
static class OtherThing {
6060
@Id long id;
6161
}

0 commit comments

Comments
 (0)