nizhikov commented on code in PR #11580: URL: https://github.com/apache/ignite/pull/11580#discussion_r1856480687
########## modules/core/src/test/java/org/apache/ignite/internal/processors/cache/query/GridCacheQueryTransformerSelfTest.java: ########## @@ -311,23 +294,17 @@ public void testKeepBinaryFiltered() throws Exception { for (int i = 0; i < 5; i++) assertEquals(i * 1000, res.get(i).intValue()); - } - finally { - cache.destroy(); - } + }); } /** * @throws Exception If failed. */ @Test public void testLocal() throws Exception { - IgniteCache<Integer, Value> cache = grid().createCache("test-cache"); - - try { - for (int i = 0; i < 50; i++) - cache.put(i, new Value("str" + i, i * 100)); + assumeTrue(sqlTxMode == TestTransactionMode.NONE); Review Comment: Done. -- 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: notifications-unsubscr...@ignite.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org