changeset 1491:e9d1156e0e54

Fixed the error in fx test. THis test seems to eb joining random failures, as FX seems to be horribly unstable currently.
author Jiri Vanek <jvanek@redhat.com>
date Wed, 07 Feb 2018 11:21:38 +0100
parents adb6dfe2b231
children f2717977a1b3
files tests/reproducers/custom/JavaFx/testcases/JavaFxTest.java
diffstat 1 files changed, 2 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/tests/reproducers/custom/JavaFx/testcases/JavaFxTest.java	Tue Feb 06 18:54:24 2018 +0100
+++ b/tests/reproducers/custom/JavaFx/testcases/JavaFxTest.java	Wed Feb 07 11:21:38 2018 +0100
@@ -59,8 +59,8 @@
                 "/JavaFx.jnlp",
                 new StringBasedClosingListener(done),
                 new StringBasedClosingListener("xceptionxception"));
-        /System.out.println(pr.stdout);
-        /System.out.println(pr.stderr);
+        System.out.println(pr.stdout);
+        System.out.println(pr.stderr);
         Assert.assertTrue("stdout should contain " + correct + ", but it didnt.", pr.stdout.contains(correct));
     }
 }