From dd4cb886bfe9ff23901831eb9cddcc0ef9679ee6 Mon Sep 17 00:00:00 2001 From: Anton Keks Date: Sun, 16 Jan 2022 22:53:33 +0200 Subject: [PATCH] do not create gui, so that these tests can run on mac --- test/net/azib/ipscan/core/net/PingerRegistryTest.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/net/azib/ipscan/core/net/PingerRegistryTest.java b/test/net/azib/ipscan/core/net/PingerRegistryTest.java index b3a79cb6..208e1afe 100644 --- a/test/net/azib/ipscan/core/net/PingerRegistryTest.java +++ b/test/net/azib/ipscan/core/net/PingerRegistryTest.java @@ -17,7 +17,7 @@ public class PingerRegistryTest { @Before public void setUp() throws Exception { System.setProperty("java.library.path", "../swt/lib"); - registry = new PingerRegistry(config, new ComponentRegistry().init()); + registry = new PingerRegistry(config, new ComponentRegistry().init(false)); } @Test