Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@
import jakarta.persistence.Table;

import org.junit.Before;
import org.junit.Ignore;
import org.junit.Test;

import io.smallrye.mutiny.Uni;
Expand Down Expand Up @@ -118,6 +119,7 @@ public void addOneElementWithMutinyAPI(TestContext context) {
}

@Test
@Ignore // see https://github.com/hibernate/hibernate-reactive/issues/1506
public void removeOneElementWithStageAPI(TestContext context) {
test( context, openSession()
.thenCompose( session -> session
Expand All @@ -132,6 +134,7 @@ public void removeOneElementWithStageAPI(TestContext context) {
}

@Test
@Ignore // see https://github.com/hibernate/hibernate-reactive/issues/1506
public void removeOneElementWithMutinyAPI(TestContext context) {
test( context, getMutinySessionFactory()
.withTransaction( (session, transaction) -> session
Expand Down Expand Up @@ -175,6 +178,7 @@ public void clearCollectionOfElementsWithMutinyAPI(TestContext context) {
}

@Test
@Ignore // see https://github.com/hibernate/hibernate-reactive/issues/1506
public void removeAndAddElementWithStageAPI(TestContext context) {
test( context, getSessionFactory()
.withTransaction( (session, transaction) -> session
Expand All @@ -191,6 +195,7 @@ public void removeAndAddElementWithStageAPI(TestContext context) {
}

@Test
@Ignore // see https://github.com/hibernate/hibernate-reactive/issues/1506
public void removeAndAddElementWithMutinyAPI(TestContext context){
test ( context, getMutinySessionFactory()
.withTransaction( (session, transaction) -> session
Expand Down