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
This commit is contained in:
Axel Howind 2024-02-17 15:47:46 +00:00
parent c871bb7b9f
commit 63899a8810
1 changed files with 4 additions and 0 deletions

View File

@ -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'