Try and avoid test failures on GitHub CI

This commit is contained in:
Gary Gregory 2024-04-24 19:16:01 -04:00
parent bd6a8c4227
commit 056a2244e5
1 changed files with 1 additions and 1 deletions

View File

@ -261,7 +261,7 @@ public class StopWatchTest extends AbstractLangTest {
final long time = watch.getTime();
assertEquals(time, watch.getTime());
assertThat("time", time, allOf(greaterThanOrEqualTo(500L), lessThan(700L)));
assertThat("time", time, allOf(greaterThanOrEqualTo(500L), lessThan(2000L)));
watch.reset();
assertEquals(0, watch.getTime());