From a8f8450ec9efe212d4e4d51558d6c858328ac0e2 Mon Sep 17 00:00:00 2001 From: Nailik <13292441+Nailik@users.noreply.github.com> Date: Wed, 22 Oct 2025 22:27:59 +0200 Subject: [PATCH] [PM-27088] fix unit test execution (#6048) --- app/build.gradle.kts | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/app/build.gradle.kts b/app/build.gradle.kts index 7f9cb6340b..39df639fe6 100644 --- a/app/build.gradle.kts +++ b/app/build.gradle.kts @@ -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" } }