diff --git a/integration-tests/bytecode-enhancements-it/src/test/java/org/hibernate/reactive/it/LazyOneToOneBETest.java b/integration-tests/bytecode-enhancements-it/src/test/java/org/hibernate/reactive/it/LazyOneToOneBETest.java index 70f90642e..cde5a0269 100644 --- a/integration-tests/bytecode-enhancements-it/src/test/java/org/hibernate/reactive/it/LazyOneToOneBETest.java +++ b/integration-tests/bytecode-enhancements-it/src/test/java/org/hibernate/reactive/it/LazyOneToOneBETest.java @@ -7,16 +7,15 @@ import java.util.Collection; import java.util.List; -import jakarta.persistence.metamodel.Attribute; import org.hibernate.reactive.it.lazytoone.Captain; import org.hibernate.reactive.it.lazytoone.Ship; import org.hibernate.reactive.mutiny.Mutiny; -import org.junit.Ignore; import org.junit.Test; import io.vertx.ext.unit.TestContext; +import jakarta.persistence.metamodel.Attribute; import static org.assertj.core.api.Assertions.assertThat; @@ -31,7 +30,6 @@ protected Collection> annotatedEntities() { } @Test - @Ignore //see https://github.com/hibernate/hibernate-reactive/issues/1517 public void testCascadeDelete(TestContext context) { Captain robert = new Captain( "Robert Witterel" ); Ship obraDinn = new Ship( "Obra Dinn" ); @@ -57,7 +55,6 @@ public void testCascadeDelete(TestContext context) { } @Test - @Ignore //see https://github.com/hibernate/hibernate-reactive/issues/1517 public void testFetchOnChildSide(TestContext context) { Captain robert = new Captain( "Robert Witterel" ); Ship obraDinn = new Ship( "Obra Dinn" ); @@ -83,7 +80,6 @@ public void testFetchOnChildSide(TestContext context) { } @Test - @Ignore //see https://github.com/hibernate/hibernate-reactive/issues/1517 public void testFetchOnParentSide(TestContext context) { Captain robert = new Captain( "Robert Witterel" ); Ship obraDinn = new Ship( "Obra Dinn" );