Skip to content

Commit 279136d

Browse files
committed
[#2651] Removed @disabled from FindByIdWithLockTest.testFindUpgradeNoWait
1 parent 91c210e commit 279136d

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

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

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,6 @@
1616
import java.util.concurrent.TimeUnit;
1717

1818
import org.junit.jupiter.api.BeforeEach;
19-
import org.junit.jupiter.api.Disabled;
2019
import org.junit.jupiter.api.Test;
2120

2221
import io.vertx.junit5.Timeout;
@@ -84,7 +83,6 @@ context, getMutinySessionFactory()
8483
);
8584
}
8685

87-
@Disabled
8886
@Test
8987
public void testFindUpgradeNoWait(VertxTestContext context) {
9088
Child child = new Child( CHILD_ID, "And" );
@@ -167,7 +165,7 @@ public static class Child {
167165

168166
public String name;
169167

170-
@ManyToOne
168+
@ManyToOne(fetch = FetchType.LAZY)
171169
public Parent parent;
172170

173171
public Child() {

0 commit comments

Comments
 (0)