Skip to content

Commit

Permalink
Fixed test
Browse files Browse the repository at this point in the history
  • Loading branch information
scottf committed Oct 2, 2024
1 parent 85dcdc2 commit 0f712d6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/test/java/io/nats/requestMany/RequestManyTests.java
Original file line number Diff line number Diff line change
Expand Up @@ -336,8 +336,8 @@ public void testRequestManyBuilder() {

// stall strategy
assertBuilder(-1, DEFAULT_TIMEOUT / 10, -1, false, RequestMany.stall(NC));
assertBuilder(MAX_MILLIS, MAX_MILLIS / 10, -1, false, RequestMany.stall(NC, MAX_MILLIS));
assertBuilder(MAX_MILLIS, MAX_MILLIS / 10, -1, false, RequestMany.stall(NC, MAX_MILLIS + 1));
assertBuilder(MAX_MILLIS, DEFAULT_TIMEOUT, -1, false, RequestMany.stall(NC, MAX_MILLIS));
assertBuilder(MAX_MILLIS, DEFAULT_TIMEOUT, -1, false, RequestMany.stall(NC, MAX_MILLIS + 1));
assertBuilder(-1, DEFAULT_TIMEOUT / 10, -1, false, RequestMany.stall(NC, 0));
assertBuilder(-1, DEFAULT_TIMEOUT / 10, -1, false, RequestMany.stall(NC, -1));

Expand Down

0 comments on commit 0f712d6

Please sign in to comment.