From f8d366e749fa07ce9080f16b7628b7eca02d12bc Mon Sep 17 00:00:00 2001 From: Vlad Mihalcea Date: Mon, 5 Dec 2016 11:07:55 +0200 Subject: [PATCH] HHH-11302 - One-To-Many in a Embeddable throw ConcurrentModificationException Add @Ignore annotation because the test was failing during @Before phase execution --- .../annotations/embeddables/EmbeddableWithOneToManyTest.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/hibernate-core/src/test/java/org/hibernate/test/annotations/embeddables/EmbeddableWithOneToManyTest.java b/hibernate-core/src/test/java/org/hibernate/test/annotations/embeddables/EmbeddableWithOneToManyTest.java index 6b035d6f5f..ba11b6670f 100644 --- a/hibernate-core/src/test/java/org/hibernate/test/annotations/embeddables/EmbeddableWithOneToManyTest.java +++ b/hibernate-core/src/test/java/org/hibernate/test/annotations/embeddables/EmbeddableWithOneToManyTest.java @@ -27,8 +27,8 @@ import javax.persistence.Table; import javax.persistence.Version; import org.hibernate.testing.FailureExpected; -import org.hibernate.testing.TestForIssue; import org.hibernate.testing.junit4.BaseCoreFunctionalTestCase; +import org.junit.Ignore; import org.junit.Test; import static org.hibernate.testing.transaction.TransactionUtil.doInHibernate; @@ -38,8 +38,8 @@ import static org.junit.Assert.assertTrue; /** * @author Vlad Mihalcea */ -@TestForIssue(jiraKey = "HHH-11302") @FailureExpected( jiraKey = "HHH-11302", message = "TBD") +@Ignore public class EmbeddableWithOneToManyTest extends BaseCoreFunctionalTestCase { // Add your entities here.