sashapolo commented on code in PR #5568: URL: https://github.com/apache/ignite-3/pull/5568#discussion_r2028660287
########## modules/table/src/test/java/org/apache/ignite/internal/table/distributed/TableManagerTest.java: ########## @@ -448,9 +446,9 @@ public void testDropTable() throws Exception { assertNull(tableManager.table(DYNAMIC_TABLE_FOR_DROP_NAME)); assertEquals(0, tableManager.tables().size()); - verify(mvTableStorage, atMost(0)).destroy(); - verify(txStateStorage, atMost(0)).destroy(); - verify(replicaMgr, atMost(0)).stopReplica(any()); + verify(mvTableStorage, never()).destroy(); + verify(txStateStorage, never()).destroy(); + verify(replicaMgr, never()).stopReplica(any()); Review Comment: Actually, this is not true, because this tx storage is still the per-table storage, which should be destroyed. It will be removed completely for the colocation case. -- 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