Skip to content
This repository was archived by the owner on Nov 10, 2025. It is now read-only.

Commit 06ca18a

Browse files
committed
Fix KclMessageDrivenChannelAdapterTests for assert
The other test may populate its table into a Localstack as well
1 parent f5704cd commit 06ca18a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/test/java/org/springframework/integration/aws/kinesis/KclMessageDrivenChannelAdapterTests.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -123,7 +123,7 @@ void kclChannelAdapterReceivesRecords() {
123123
assertThat(streamConsumers).hasSize(0);
124124

125125
List<String> tableNames = DYNAMO_DB.listTables().join().tableNames();
126-
assertThat(tableNames).containsOnly("test_table");
126+
assertThat(tableNames).contains("test_table");
127127
}
128128

129129
@Test

0 commit comments

Comments
 (0)