From 6bd22e47b5e8c114769607e3195f0469817728fd Mon Sep 17 00:00:00 2001 From: Ben Soares Date: Thu, 23 Mar 2023 01:50:13 +0000 Subject: [PATCH] JAL-629 don't clear appProps in tests --- test/jalview/bin/ArgParserTest.java | 2 +- test/jalview/bin/CommandsTest.java | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) 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"); } -- 1.7.10.2