mirror of
https://github.com/hapifhir/hapi-fhir.git
synced 2025-03-09 14:33:32 +00:00
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…
x
Reference in New Issue
Block a user