aboutsummaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorAlexander Kriegisch <Alexander@Kriegisch.name>2021-03-23 01:25:22 +0700
committerAlexander Kriegisch <Alexander@Kriegisch.name>2021-03-23 17:03:16 +0700
commiteac253e74682f126147f1c80ed818e171feea22d (patch)
treef7c8f2c50c16c78aed0e055170d09f35719933a3 /tests
parent37cd358d32af3fd8a1b1e09057ae007d2419282b (diff)
downloadaspectj-eac253e74682f126147f1c80ed818e171feea22d.tar.gz
aspectj-eac253e74682f126147f1c80ed818e171feea22d.zip
Revert "Remove module 'run-all-junit-tests' from root POM -> speed up the build"
This reverts commit a1867b05ba6443d32abc4049c26b92fc226d6f78. Signed-off-by: Alexander Kriegisch <Alexander@Kriegisch.name>
Diffstat (limited to 'tests')
-rw-r--r--tests/harness/SystemPropertiesTest.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/harness/SystemPropertiesTest.java b/tests/harness/SystemPropertiesTest.java
index e489d4f5a..d02985f88 100644
--- a/tests/harness/SystemPropertiesTest.java
+++ b/tests/harness/SystemPropertiesTest.java
@@ -3,7 +3,7 @@ public class SystemPropertiesTest {
public static void main(String[] args) {
boolean pass = Boolean.getBoolean("PASS");
if (!pass) {
- throw new Error("failed to get Boolean \"PASS\"");
+ throw new Error("failed to get Boolean \\\"PASS\\\"");
}
String value = System.getProperty("name", null);
if (!"value".equals(value)) {