rpuch commented on code in PR #5568: URL: https://github.com/apache/ignite-3/pull/5568#discussion_r2028635544
########## 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: Let me be more precise: it should be called only for non-colocation case. In case of colocation, tx state storage belongs to the zone, not the table, and this test does not destroy the zone. -- 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