Skip to content

Commit

Permalink
Fix KclMessageDrivenChannelAdapterTests for assert
Browse files Browse the repository at this point in the history
The other test may populate its table into a Localstack as well
  • Loading branch information
artembilan committed Sep 24, 2024
1 parent f5704cd commit 06ca18a
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@ void kclChannelAdapterReceivesRecords() {
assertThat(streamConsumers).hasSize(0);

List<String> tableNames = DYNAMO_DB.listTables().join().tableNames();
assertThat(tableNames).containsOnly("test_table");
assertThat(tableNames).contains("test_table");
}

@Test
Expand Down

0 comments on commit 06ca18a

Please sign in to comment.