Skip to content

Commit

Permalink
WIP: update vertx mutiny test due to latest SR/CP changes
Browse files Browse the repository at this point in the history
Not sure about this, but I want to see how CI goes
  • Loading branch information
FroMage committed Jun 10, 2024
1 parent 104b838 commit 300227d
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -46,14 +46,14 @@ public void testFailure() throws InterruptedException {
verifyFailure("foo-completion-stage", "java.lang.NullPointerException: Something is null", false);
verifyFailure("foo-completion-stage-failure", "boom", true);
verifyFailure("foo-uni", "java.lang.NullPointerException: Something is null", false);
verifyFailure("foo-uni-failure", "boom", true);
verifyFailure("foo-uni-failure", "java.io.IOException: boom", true);

verifyFailure("foo-blocking", "java.lang.IllegalStateException: Red is dead", false);
verifyFailure("foo-message-blocking", "java.lang.NullPointerException", false);
verifyFailure("foo-completion-stage-blocking", "java.lang.NullPointerException: Something is null", false);
verifyFailure("foo-completion-stage-failure-blocking", "boom", true);
verifyFailure("foo-uni-blocking", "java.lang.NullPointerException: Something is null", false);
verifyFailure("foo-uni-failure-blocking", "boom", true);
verifyFailure("foo-uni-failure-blocking", "java.io.IOException: boom", true);
}

@Test
Expand Down

0 comments on commit 300227d

Please sign in to comment.