From: Axel Howind Date: Sat, 17 Feb 2024 15:47:46 +0000 (+0000) Subject: fix #68635: POI unit tests fail when run under non-US locale X-Git-Tag: REL_5_3_0~103 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=63899a88101c4705cc9bb54d8d790eccdd9ee3dd;p=poi.git 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 --- 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'