Skip to content

Commit

Permalink
ARTEMIS-3800 Fixing failing test
Browse files Browse the repository at this point in the history
  • Loading branch information
clebertsuconic committed Apr 26, 2022
1 parent 506d59d commit ed5ae2c
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -143,7 +143,7 @@ public void testForceDeleteAddressWhenExistsQueues() throws Exception {
deleteAddress.setForce(true);
deleteAddress.execute(new ActionContext(System.in, new PrintStream(output), new PrintStream(error)));
checkExecutionPassed(deleteAddress);
Wait.assertEquals(null, () -> server.locateQueue(queueName));
Wait.assertTrue(() -> server.locateQueue(queueName) == null);
}

@Test
Expand Down

0 comments on commit ed5ae2c

Please sign in to comment.