From 09002e987248827643d039c7aafbb0f58bd9537a Mon Sep 17 00:00:00 2001 From: Gail Badner Date: Mon, 27 Feb 2012 12:50:54 -0800 Subject: [PATCH] HHH-6525 : Integrate Set-style plural attributes into persisters --- .../test/collection/set/element/SimpleElementSetTest.java | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/hibernate-core/src/matrix/java/org/hibernate/test/collection/set/element/SimpleElementSetTest.java b/hibernate-core/src/matrix/java/org/hibernate/test/collection/set/element/SimpleElementSetTest.java index 7c7820f1d6..0a696e8553 100755 --- a/hibernate-core/src/matrix/java/org/hibernate/test/collection/set/element/SimpleElementSetTest.java +++ b/hibernate-core/src/matrix/java/org/hibernate/test/collection/set/element/SimpleElementSetTest.java @@ -33,6 +33,7 @@ import org.hibernate.HibernateException; import org.hibernate.Session; import org.hibernate.Transaction; import org.hibernate.cfg.Configuration; +import org.hibernate.testing.FailureExpected; import org.hibernate.testing.junit4.BaseCoreFunctionalTestCase; import static org.junit.Assert.assertEquals; @@ -54,6 +55,7 @@ public class SimpleElementSetTest extends BaseCoreFunctionalTestCase { } @Test + @FailureExpected( jiraKey = "HHH-6525") public void testLoad() throws HibernateException, SQLException { Session s = openSession(); Transaction t = s.beginTransaction(); @@ -76,4 +78,4 @@ public class SimpleElementSetTest extends BaseCoreFunctionalTestCase { t.commit(); s.close(); } -} \ No newline at end of file +}