[PM-27088] fix unit test execution (#6048)

This commit is contained in:
Nailik
2025-10-22 20:27:59 +00:00
committed by GitHub
parent 47628a6da2
commit a8f8450ec9
+4 -1
View File
@@ -302,7 +302,10 @@ tasks {
useJUnitPlatform()
maxHeapSize = "2g"
maxParallelForks = Runtime.getRuntime().availableProcessors()
jvmArgs = jvmArgs.orEmpty() + "-XX:+UseParallelGC" + "-Duser.country=US"
jvmArgs = jvmArgs.orEmpty() + "-XX:+UseParallelGC" +
// Explicitly setting the user Country and Language because tests assume en-US
"-Duser.country=US" +
"-Duser.language=en"
}
}