Skip to content

Commit 6598ab6

Browse files
marko-bekhtambellade
authored andcommitted
HHH-19185 Follow up on test update from 44918d6
1 parent a262777 commit 6598ab6

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

hibernate-core/src/test/java/org/hibernate/orm/test/jpa/orphan/onetoone/OneToOneLazyOrphanRemovalEmbeddedTest.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -92,14 +92,14 @@ static class ToOneContainer {
9292
@OneToOne(orphanRemoval = true, fetch = FetchType.LAZY)
9393
private ChildEntity child;
9494

95-
private Integer count;
95+
private Integer countValue;
9696

9797
public ToOneContainer() {
9898
}
9999

100-
public ToOneContainer(ChildEntity child, Integer count) {
100+
public ToOneContainer(ChildEntity child, Integer countValue) {
101101
this.child = child;
102-
this.count = count;
102+
this.countValue = countValue;
103103
}
104104

105105
public ChildEntity getChild() {

0 commit comments

Comments
 (0)