This is an automated email from the ASF dual-hosted git repository.
ggregory pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/commons-lang.git
The following commit(s) were added to refs/heads/master by this push:
new fff3db29b Try and avoid test failures on GitHub CI
fff3db29b is described below
commit fff3db29be4a0d4065ea42d697630d935b0e96eb
Author: Gary Gregory <[email protected]>
AuthorDate: Wed Apr 24 16:13:08 2024 -0400
Try and avoid test failures on GitHub CI
---
src/test/java/org/apache/commons/lang3/time/StopWatchTest.java | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/test/java/org/apache/commons/lang3/time/StopWatchTest.java
b/src/test/java/org/apache/commons/lang3/time/StopWatchTest.java
index a4badbd35..3997596a8 100644
--- a/src/test/java/org/apache/commons/lang3/time/StopWatchTest.java
+++ b/src/test/java/org/apache/commons/lang3/time/StopWatchTest.java
@@ -295,7 +295,7 @@ public class StopWatchTest extends AbstractLangTest {
final long totalTime = watch.getTime();
assertEquals(12, splitStr.length(), "Formatted split string not the
correct length");
- assertThat("splitTime", splitTime, allOf(greaterThanOrEqualTo(500L),
lessThan(700L)));
+ assertThat("splitTime", splitTime, allOf(greaterThanOrEqualTo(500L),
lessThan(1000L)));
assertThat("totalTime", totalTime, allOf(greaterThanOrEqualTo(1500L),
lessThan(2100L)));
}