Skip to content

Commit

Permalink
Apply 1 suggestion(s) to 1 file(s)
Browse files Browse the repository at this point in the history
  • Loading branch information
JonathanDaSilvaPhysics authored and Yann Yavo committed Jul 20, 2021
1 parent 74ae03e commit ac93915
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ void setUp(Channel channel, ObjectMapper objectMapper) {
void should_capture_messages_sent_on_queue() {
final int nbRequests = 5;

List<String> messages = IntStream.range(0, nbRequests)
final List<String> messages = IntStream.range(0, nbRequests)
.mapToObj(i -> "test-message-" + i).collect(Collectors.toList());

final Flux<Delivery> receivedMessage = tested.consume(nbRequests).on(QUEUE).start();
Expand Down

0 comments on commit ac93915

Please sign in to comment.