Fix KclMessageDrivenChannelAdapterTests for assert

The other test may populate its table into a Localstack as well
This commit is contained in:
Artem Bilan
2024-09-24 13:56:55 -04:00
parent f5704cd7c4
commit 06ca18a8f5

View File

@@ -123,7 +123,7 @@ public class KclMessageDrivenChannelAdapterTests implements LocalstackContainerT
assertThat(streamConsumers).hasSize(0);
List<String> tableNames = DYNAMO_DB.listTables().join().tableNames();
assertThat(tableNames).containsOnly("test_table");
assertThat(tableNames).contains("test_table");
}
@Test