Author: axh
Date: Sat Feb 17 15:47:46 2024
New Revision: 1915827
URL: http://svn.apache.org/viewvc?rev=1915827&view=rev
Log:
fix #68635: POI unit tests fail when run under non-US locale
Modified:
poi/trunk/poi/build.gradle
Modified: poi/trunk/poi/build.gradle
URL:
http://svn.apache.org/viewvc/poi/trunk/poi/build.gradle?rev=1915827&r1=1915826&r2=1915827&view=diff
==============================================================================
--- poi/trunk/poi/build.gradle (original)
+++ poi/trunk/poi/build.gradle Sat Feb 17 15:47:46 2024
@@ -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'
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]