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 350332311 TAP5-2722: Run tests with jvmArg -Duser.language=en 350332311 is described below commit 35033231183369d22f41455f0dfb64e92748a18f Author: Volker Lamp <vl...@apache.org> AuthorDate: Mon Apr 25 22:10:31 2022 +0200 TAP5-2722: Run tests with jvmArg -Duser.language=en Corrected wrong language property symbol. --- 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 65be0b18a..64197ffcc 100644 --- a/tapestry-core/build.gradle +++ b/tapestry-core/build.gradle @@ -78,7 +78,7 @@ test { jvmArgs("--add-opens=java.base/java.nio.charset=ALL-UNNAMED"); } // TAP5-2722 - systemProperty 'user.lang', 'en' + systemProperty 'user.language', 'en' } task runTestApp1(type:JavaExec) {