Update RestarterTests to expect listener to be notified at least once

This commit is contained in:
Andy Wilkinson
2015-10-29 15:59:12 +00:00
parent eaa4d900eb
commit 549f873941

View File

@@ -96,7 +96,7 @@ public class RestarterTests {
String output = this.out.toString();
assertThat(StringUtils.countOccurrencesOf(output, "Tick 0"), greaterThan(1));
assertThat(StringUtils.countOccurrencesOf(output, "Tick 1"), greaterThan(1));
assertThat(TestRestartListener.restarts, greaterThan(1));
assertThat(TestRestartListener.restarts, greaterThan(0));
}
@Test