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

commit 82c6f59bc54c9c652cdba66cf2721622348623f3
Author: Gary D. Gregory <garydgreg...@gmail.com>
AuthorDate: Mon Jun 9 08:32:45 2025 -0400

    Fix test side-effects on Java 24
---
 .../java/org/apache/commons/lang3/time/FastDateParserTest.java    | 8 ++++++++
 1 file changed, 8 insertions(+)

diff --git 
a/src/test/java/org/apache/commons/lang3/time/FastDateParserTest.java 
b/src/test/java/org/apache/commons/lang3/time/FastDateParserTest.java
index 1098939f7..d6540ed07 100644
--- a/src/test/java/org/apache/commons/lang3/time/FastDateParserTest.java
+++ b/src/test/java/org/apache/commons/lang3/time/FastDateParserTest.java
@@ -48,10 +48,18 @@
 import org.junit.jupiter.params.ParameterizedTest;
 import org.junit.jupiter.params.provider.Arguments;
 import org.junit.jupiter.params.provider.MethodSource;
+import org.junitpioneer.jupiter.DefaultLocale;
+import org.junitpioneer.jupiter.DefaultTimeZone;
+import org.junitpioneer.jupiter.ReadsDefaultLocale;
+import org.junitpioneer.jupiter.ReadsDefaultTimeZone;
 
 /**
  * Tests {@link org.apache.commons.lang3.time.FastDateParser}.
  */
+/* Make test reproducible */ @DefaultLocale(language = "en")
+/* Make test reproducible */ @DefaultTimeZone(TimeZones.GMT_ID)
+/* Make test reproducible */ @ReadsDefaultLocale
+/* Make test reproducible */ @ReadsDefaultTimeZone
 class FastDateParserTest extends AbstractLangTest {
 
     private enum Expected1806 {

Reply via email to