From: Felix Dörre Date: Sat, 5 Jul 2014 18:22:07 +0000 (+0200) Subject: Remove startup output of managed tests. X-Git-Url: https://code.wpia.club/?p=gigi.git;a=commitdiff_plain;h=30d2be517e03dc0566c313a3d275dac60f2b5a68 Remove startup output of managed tests. --- diff --git a/tests/org/cacert/gigi/testUtils/ManagedTest.java b/tests/org/cacert/gigi/testUtils/ManagedTest.java index 2d164f58..9a545323 100644 --- a/tests/org/cacert/gigi/testUtils/ManagedTest.java +++ b/tests/org/cacert/gigi/testUtils/ManagedTest.java @@ -109,7 +109,6 @@ public class ManagedTest { String line; while ((line = br.readLine()) != null && !line.contains("Server:main: Started")) { - System.err.println(line); } new Thread() { @Override @@ -124,7 +123,6 @@ public class ManagedTest { } } }.start(); - System.err.println(line); if (line == null) { throw new Error("Server startup failed"); }