You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tapestry.apache.org by vl...@apache.org on 2022/04/24 08:58:36 UTC

[tapestry-5] branch master updated: Revert "TAP5-2722: Run tests with jvmArg -Duser.language=en"

This is an automated email from the ASF dual-hosted git repository.

vlamp pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/tapestry-5.git


The following commit(s) were added to refs/heads/master by this push:
     new 59ebeb856 Revert "TAP5-2722: Run tests with jvmArg -Duser.language=en"
59ebeb856 is described below

commit 59ebeb856cd74c7360671cc799fb238064877112
Author: Volker Lamp <vl...@apache.org>
AuthorDate: Sun Apr 24 09:37:34 2022 +0200

    Revert "TAP5-2722: Run tests with jvmArg -Duser.language=en"
    
    This reverts commit 923247f9ba3a9078c33677f4bc017342df7cda0b.
---
 tapestry-core/build.gradle | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/tapestry-core/build.gradle b/tapestry-core/build.gradle
index c1bd59b3a..35f52895f 100644
--- a/tapestry-core/build.gradle
+++ b/tapestry-core/build.gradle
@@ -75,7 +75,7 @@ jar {
 // Needed to have XMLTokenStreamTests.testStreamEncoding() passing on Java 9+
 test {
     if (JavaVersion.current().isCompatibleWith(JavaVersion.VERSION_1_9)) {
-        jvmArgs("-Duser.language=en --add-opens=java.base/java.nio.charset=ALL-UNNAMED");
+        jvmArgs("--add-opens=java.base/java.nio.charset=ALL-UNNAMED");
     }
 }