rpuch commented on code in PR #1854:
URL: https://github.com/apache/ignite-3/pull/1854#discussion_r1151536353
##########
modules/table/src/test/java/org/apache/ignite/internal/table/distributed/TableManagerTest.java:
##########
@@ -734,21 +820,21 @@ private TableManager
createTableManager(CompletableFuture<TableManager> tblManag
) {
@Override
protected MvTableStorage createTableStorage(TableConfiguration
tableCfg, TablesConfiguration tablesCfg) {
- return Mockito.spy(super.createTableStorage(tableCfg,
tablesCfg));
+ mvTableStorage = spy(super.createTableStorage(tableCfg,
tablesCfg));
+
+ return mvTableStorage;
}
@Override
protected TxStateTableStorage
createTxStateTableStorage(TableConfiguration tableCfg) {
- return Mockito.spy(super.createTxStateTableStorage(tableCfg));
+ txStateTableStorage =
spy(super.createTxStateTableStorage(tableCfg));
+
+ return txStateTableStorage;
}
};
sm.start();
- if (!waitingSqlSchema) {
Review Comment:
Oh, I think you are right. Then I'm ok with this removal.
--
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]