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 a94ba78 commit 1adce18Copy full SHA for 1adce18
hibernate-reactive-core/src/test/java/org/hibernate/reactive/CascadeTest.java
@@ -12,6 +12,7 @@
12
import org.hibernate.Hibernate;
13
import org.hibernate.cfg.Configuration;
14
15
+import org.junit.jupiter.api.Disabled;
16
import org.junit.jupiter.api.Test;
17
18
import io.vertx.junit5.Timeout;
@@ -49,6 +50,7 @@ protected Configuration constructConfiguration() {
49
50
}
51
52
@Test
53
+ @Disabled("It also fails in Hibernate ORM, see https://hibernate.atlassian.net/browse/HHH-19868")
54
public void testQuery(VertxTestContext context) {
55
Node basik = new Node( "Child" );
56
basik.parent = new Node( "Parent" );
0 commit comments