Skip to content

Commit 77451b1

Browse files
committed
[#1517] Re-enable tests in LazyOneToOneBETest
1 parent 58e5bac commit 77451b1

File tree

1 file changed

+1
-5
lines changed

1 file changed

+1
-5
lines changed

integration-tests/bytecode-enhancements-it/src/test/java/org/hibernate/reactive/it/LazyOneToOneBETest.java

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -7,16 +7,15 @@
77

88
import java.util.Collection;
99
import java.util.List;
10-
import jakarta.persistence.metamodel.Attribute;
1110

1211
import org.hibernate.reactive.it.lazytoone.Captain;
1312
import org.hibernate.reactive.it.lazytoone.Ship;
1413
import org.hibernate.reactive.mutiny.Mutiny;
1514

16-
import org.junit.Ignore;
1715
import org.junit.Test;
1816

1917
import io.vertx.ext.unit.TestContext;
18+
import jakarta.persistence.metamodel.Attribute;
2019

2120
import static org.assertj.core.api.Assertions.assertThat;
2221

@@ -31,7 +30,6 @@ protected Collection<Class<?>> annotatedEntities() {
3130
}
3231

3332
@Test
34-
@Ignore //see https://github.com/hibernate/hibernate-reactive/issues/1517
3533
public void testCascadeDelete(TestContext context) {
3634
Captain robert = new Captain( "Robert Witterel" );
3735
Ship obraDinn = new Ship( "Obra Dinn" );
@@ -57,7 +55,6 @@ public void testCascadeDelete(TestContext context) {
5755
}
5856

5957
@Test
60-
@Ignore //see https://github.com/hibernate/hibernate-reactive/issues/1517
6158
public void testFetchOnChildSide(TestContext context) {
6259
Captain robert = new Captain( "Robert Witterel" );
6360
Ship obraDinn = new Ship( "Obra Dinn" );
@@ -83,7 +80,6 @@ public void testFetchOnChildSide(TestContext context) {
8380
}
8481

8582
@Test
86-
@Ignore //see https://github.com/hibernate/hibernate-reactive/issues/1517
8783
public void testFetchOnParentSide(TestContext context) {
8884
Captain robert = new Captain( "Robert Witterel" );
8985
Ship obraDinn = new Ship( "Obra Dinn" );

0 commit comments

Comments
 (0)