Skip to content

Commit

Permalink
fix sonar
Browse files Browse the repository at this point in the history
  • Loading branch information
ABingHuang committed Jul 18, 2022
1 parent e46c75d commit 7538fec
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -475,7 +475,7 @@ public void testMvAfterDropBaseTable() throws Exception {
String dropSql = "drop table tbl_drop;";
StmtExecutor stmtExecutor = new StmtExecutor(connectContext, dropSql);
stmtExecutor.execute();
Assert.assertTrue(mv != null);
Assert.assertNotNull(mv);
Assert.assertFalse(mv.isActive());
}
}

0 comments on commit 7538fec

Please sign in to comment.