Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
NSAmelchev committed Jul 11, 2024
1 parent 02d3e11 commit 8a25b69
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ public class GridCommandHandlerInterruptCommandTest extends GridCommandHandlerAb

/** {@inheritDoc} */
@Override protected void beforeTest() throws Exception {
Assume.assumeTrue(cliCommandHandler());
Assume.assumeTrue(commandHandler.equals(CLI_GRID_CLIENT_CMD_HND));

super.beforeTest();

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -364,7 +364,7 @@ public void testClientsConnections() throws Exception {
IgniteClient ignored1 = Ignition.startClient(new ClientConfiguration().setAddresses(host + ":" + port));
Connection ignored2 = new IgniteJdbcThinDriver().connect("jdbc:ignite:thin://" + host, new Properties())
) {
assertEquals(2, systemView(ignite0, CLI_CONN_VIEW).size());
assertEquals(commandHandler.equals(CLI_CMD_HND) ? 3 : 2, systemView(ignite0, CLI_CONN_VIEW).size());
}
}

Expand Down

0 comments on commit 8a25b69

Please sign in to comment.