From: Ben Soares Date: Thu, 23 Mar 2023 01:50:13 +0000 (+0000) Subject: JAL-629 don't clear appProps in tests X-Git-Tag: Release_2_11_3_0~14^2~146 X-Git-Url: http://source.jalview.org/gitweb/?a=commitdiff_plain;h=6bd22e47b5e8c114769607e3195f0469817728fd;p=jalview.git JAL-629 don't clear appProps in tests --- diff --git a/test/jalview/bin/ArgParserTest.java b/test/jalview/bin/ArgParserTest.java index 4487178..d0a11fa 100644 --- a/test/jalview/bin/ArgParserTest.java +++ b/test/jalview/bin/ArgParserTest.java @@ -20,7 +20,7 @@ public class ArgParserTest @AfterClass(alwaysRun = true) public static void resetProps() { - Cache.applicationProperties.clear(); + // Cache.applicationProperties.clear(); Cache.loadProperties("test/jalview/testProps.jvprops"); } diff --git a/test/jalview/bin/CommandsTest.java b/test/jalview/bin/CommandsTest.java index 2be8458..9458044 100644 --- a/test/jalview/bin/CommandsTest.java +++ b/test/jalview/bin/CommandsTest.java @@ -28,7 +28,7 @@ public class CommandsTest @AfterClass(alwaysRun = true) public static void resetProps() { - Cache.applicationProperties.clear(); + // Cache.applicationProperties.clear(); Cache.loadProperties("test/jalview/testProps.jvprops"); }