From 63899a88101c4705cc9bb54d8d790eccdd9ee3dd Mon Sep 17 00:00:00 2001 From: Axel Howind Date: Sat, 17 Feb 2024 15:47:46 +0000 Subject: [PATCH] fix #68635: POI unit tests fail when run under non-US locale git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1915827 13f79535-47bb-0310-9956-ffa450edef68 --- poi/build.gradle | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/poi/build.gradle b/poi/build.gradle index 94cf7f8c67..8c8c3bd03a 100644 --- a/poi/build.gradle +++ b/poi/build.gradle @@ -169,6 +169,10 @@ artifacts { } test { + // use US locale for tests + systemProperty "user.language", "en" + systemProperty "user.country", "US" + dependsOn { testJar } systemProperties['junit.jupiter.execution.parallel.enabled'] = 'true' -- 2.39.5