ascherbakoff commented on code in PR #7799:
URL: https://github.com/apache/ignite-3/pull/7799#discussion_r3055765840


##########
modules/transactions/src/test/java/org/apache/ignite/internal/tx/ReversedWaitDieDeadlockPreventionTest.java:
##########
@@ -77,10 +64,16 @@ public void youngNormalTxShouldBeAborted() {
         var tx1 = beginTx(TxPriority.LOW);
         var tx2 = beginTx(TxPriority.NORMAL);
 
-        var key1 = key("test");
+        var key1 = lockKey("test");
 
         assertThat(xlock(tx1, key1), willSucceedFast());
 
         assertThat(xlock(tx2, key1), willThrow(LockException.class));
     }
+
+    @Override
+    @Test
+    public void testNonFair() {
+        super.testNonFair();
+    }

Review Comment:
   This is debugging artefact, removed.



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to