HHH-11302 - One-To-Many in a Embeddable throw ConcurrentModificationException

Add @Ignore annotation because the test was failing during @Before phase execution
This commit is contained in:
Vlad Mihalcea 2016-12-05 11:07:55 +02:00
parent 3116716bff
commit f8d366e749
1 changed files with 2 additions and 2 deletions

View File

@ -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.