Skip to content

Commit

Permalink
GH-249 Addressing code review comments, handling checkstyle failures.
Browse files Browse the repository at this point in the history
  • Loading branch information
siddharthjain210 committed Dec 22, 2024
1 parent 7daa438 commit 35f0d9c
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -181,7 +181,7 @@ void testKPLMessageHandler_raw_payload_backpressure_failure_test() {
assertThat(ex).isNotNull();
assertThat(ex.getCause()).isNotNull();
assertThat(ex.getCause().getClass()).isEqualTo(RuntimeException.class);
assertThat(ex.getCause().getMessage()).isEqualTo("KPL Buffer already at max capacity.");
assertThat(ex.getCause().getMessage()).isEqualTo("Buffer already at max capacity.");
}

verify(this.kinesisProducer, Mockito.times(0)).addUserRecord(any(UserRecord.class));
Expand Down

0 comments on commit 35f0d9c

Please sign in to comment.