diff options
Diffstat (limited to 'tests/harness/SystemPropertiesTest.java')
-rw-r--r-- | tests/harness/SystemPropertiesTest.java | 2 |
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)) { |