Fixed the test

resolves #511
This commit is contained in:
Glenn Renfro
2019-02-08 11:38:11 -05:00
parent 60f1e21d03
commit 874b18652c

View File

@@ -316,7 +316,7 @@ public class BatchExecutionEventTests {
public void receive(String itemWrite) {
Assertions.assertThat(itemWrite).startsWith("3 items ")
.as("Message should start with '3 items'");
Assertions.assertThat(itemWrite).endsWith("written")
Assertions.assertThat(itemWrite).endsWith("written.")
.as("Message should end with ' written.'");
itemWriteEventsLatch.countDown();
}