Skip to content

Commit

Permalink
[#1517] Re-enable tests in LazyOneToOneBETest
Browse files Browse the repository at this point in the history
  • Loading branch information
DavideD committed Mar 29, 2023
1 parent 58e5bac commit 77451b1
Showing 1 changed file with 1 addition and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -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;

Expand All @@ -31,7 +30,6 @@ protected Collection<Class<?>> 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" );
Expand All @@ -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" );
Expand All @@ -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" );
Expand Down

0 comments on commit 77451b1

Please sign in to comment.