Skip to content

Commit 49190fd

Browse files
dreab8beikov
authored andcommitted
HHH-1645 enabled test for issue
1 parent e32d11e commit 49190fd

File tree

1 file changed

+3
-3
lines changed
  • hibernate-core/src/test/java/org/hibernate/orm/test/proxy

1 file changed

+3
-3
lines changed

hibernate-core/src/test/java/org/hibernate/orm/test/proxy/ProxyTest.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,8 @@
2424
import org.hibernate.internal.util.SerializationHelper;
2525
import org.hibernate.proxy.HibernateProxy;
2626

27-
import org.hibernate.testing.FailureExpected;
2827
import org.hibernate.testing.junit4.BaseCoreFunctionalTestCase;
28+
import org.hibernate.testing.orm.junit.JiraKey;
2929
import org.junit.Test;
3030

3131
import static org.junit.Assert.assertEquals;
@@ -539,7 +539,7 @@ public void testRefreshLockInitializedProxy() {
539539
}
540540

541541
@Test
542-
@FailureExpected( jiraKey = "HHH-1645", message = "Session.refresh with LockOptions does not work on uninitialized proxies" )
542+
@JiraKey( "HHH-1645" )
543543
public void testRefreshLockUninitializedProxy() {
544544
Session s = openSession();
545545
Transaction t = s.beginTransaction();
@@ -568,7 +568,7 @@ private static DataPoint newPersistentDataPoint(Session s) {
568568
}
569569

570570
@Test
571-
@FailureExpected( jiraKey = "HHH-1645", message = "Session.refresh with LockOptions does not work on uninitialized proxies" )
571+
@JiraKey( "HHH-1645" )
572572
public void testRefreshLockUninitializedProxyThenRead() {
573573
Session s = openSession();
574574
Transaction t = s.beginTransaction();

0 commit comments

Comments
 (0)