Fix compile error
This commit is contained in:
parent
d9be281fff
commit
f9b8567a3a
|
@ -81,7 +81,7 @@ public class SchedulerServiceImplTest {
|
|||
|
||||
ourLog.info("Fired {} times", CountingJob.ourCount);
|
||||
|
||||
await().until(() -> (CountingJob.ourCount, greaterThan(3));
|
||||
await().until(() -> CountingJob.ourCount, greaterThan(3));
|
||||
assertThat(CountingJob.ourCount, lessThan(20));
|
||||
}
|
||||
|
||||
|
@ -99,7 +99,7 @@ public class SchedulerServiceImplTest {
|
|||
|
||||
ourLog.info("Fired {} times", CountingJob.ourCount);
|
||||
|
||||
await().until(() -> (CountingJob.ourCount, greaterThanOrEqualTo(1));
|
||||
await().until(() -> CountingJob.ourCount, greaterThanOrEqualTo(1));
|
||||
assertThat(CountingJob.ourCount, lessThan(5));
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue