diff options
author | Jiri Vanek <[email protected]> | 2013-11-25 16:54:23 +0100 |
---|---|---|
committer | Jiri Vanek <[email protected]> | 2013-11-25 16:54:23 +0100 |
commit | b8da03fd7a7aac183acebf7ccd26196ccafca9bc (patch) | |
tree | 945106c698d36e154761be126d24fd53848bccd7 /tests/reproducers/simple/SetContextClassLoader | |
parent | 18e9c2de7a762336e0b558f3007340d5eb2e9e44 (diff) |
Removed most of checks to no output from reproducers
Diffstat (limited to 'tests/reproducers/simple/SetContextClassLoader')
-rw-r--r-- | tests/reproducers/simple/SetContextClassLoader/testcases/SetContextClassLoaderTest.java | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/tests/reproducers/simple/SetContextClassLoader/testcases/SetContextClassLoaderTest.java b/tests/reproducers/simple/SetContextClassLoader/testcases/SetContextClassLoaderTest.java index 0796db7..f2d2648 100644 --- a/tests/reproducers/simple/SetContextClassLoader/testcases/SetContextClassLoaderTest.java +++ b/tests/reproducers/simple/SetContextClassLoader/testcases/SetContextClassLoaderTest.java @@ -51,7 +51,6 @@ public class SetContextClassLoaderTest { Assert.assertTrue("stderr should match "+s+" but didn't",pr.stderr.matches(s)); String cc="ClassNotFoundException"; Assert.assertFalse("stderr should NOT contains `"+cc+"`, but did",pr.stderr.contains(cc)); - Assert.assertFalse("stdout length should be <=2, but was "+pr.stdout.length(),pr.stdout.length()>2); Assert.assertFalse("SetContextClassLoader1 should not be terminated, but was",pr.wasTerminated); Assert.assertEquals((Integer) 0, pr.returnValue); } |