Skip to content

Commit cf5b2f3

Browse files
committed
[#1506] Ignore tests removing an element from a collection of elements
Removing an element, remove the whole collection. This seems to also fail in regular ORM.
1 parent ce4d209 commit cf5b2f3

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

hibernate-reactive-core/src/test/java/org/hibernate/reactive/EagerElementCollectionForBasicTypeSetTest.java

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@
2020
import jakarta.persistence.Table;
2121

2222
import org.junit.Before;
23+
import org.junit.Ignore;
2324
import org.junit.Test;
2425

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

120121
@Test
122+
@Ignore // see https://github.com/hibernate/hibernate-reactive/issues/1506
121123
public void removeOneElementWithStageAPI(TestContext context) {
122124
test( context, openSession()
123125
.thenCompose( session -> session
@@ -132,6 +134,7 @@ public void removeOneElementWithStageAPI(TestContext context) {
132134
}
133135

134136
@Test
137+
@Ignore // see https://github.com/hibernate/hibernate-reactive/issues/1506
135138
public void removeOneElementWithMutinyAPI(TestContext context) {
136139
test( context, getMutinySessionFactory()
137140
.withTransaction( (session, transaction) -> session
@@ -175,6 +178,7 @@ public void clearCollectionOfElementsWithMutinyAPI(TestContext context) {
175178
}
176179

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

193197
@Test
198+
@Ignore // see https://github.com/hibernate/hibernate-reactive/issues/1506
194199
public void removeAndAddElementWithMutinyAPI(TestContext context){
195200
test ( context, getMutinySessionFactory()
196201
.withTransaction( (session, transaction) -> session

0 commit comments

Comments
 (0)