From 538c9b82377d9c8cd525dba3e54ad1b88ca6e89d Mon Sep 17 00:00:00 2001 From: Ben Soares Date: Tue, 12 Sep 2023 02:23:45 +0100 Subject: [PATCH] JAL-629 updated tests --- test/jalview/bin/HiDPISettingTest2.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/jalview/bin/HiDPISettingTest2.java b/test/jalview/bin/HiDPISettingTest2.java index 87a26d1..6812bce 100644 --- a/test/jalview/bin/HiDPISettingTest2.java +++ b/test/jalview/bin/HiDPISettingTest2.java @@ -171,7 +171,7 @@ public class HiDPISettingTest2 String jvmArgs = HiDPISetting.getScalePropertyArg(scale); - String appArgs = " -open examples/uniref50.fa -nosplash -nonews -noquestionnaire -nousagestats -nowebservicediscovery"; + String appArgs = " --open examples/uniref50.fa --nosplash --nonews --noquestionnaire --nousagestats --nowebservicediscovery"; Worker worker = getJalviewDesktopRunner(jvmArgs, appArgs); assertNotNull(worker, "worker is null"); @@ -183,7 +183,7 @@ public class HiDPISettingTest2 { while ((ln = worker.getErrorReader().readLine()) != null) { - if (++count > 100) + if (++count > 150) { break; } -- 1.7.10.2