From: Sasha Sherstnev Date: Fri, 9 Aug 2013 09:15:03 +0000 (+0100) Subject: Fix problem with unknown global constants X-Git-Url: http://source.jalview.org/gitweb/?a=commitdiff_plain;h=b63bd859316b9fb8aa48a14d10f3fbc461a03f9d;p=jabaws.git Fix problem with unknown global constants --- diff --git a/testsrc/compbio/runner/msa/TcoffeeParametersTester.java b/testsrc/compbio/runner/msa/TcoffeeParametersTester.java index 4e71adc..70ba1f4 100644 --- a/testsrc/compbio/runner/msa/TcoffeeParametersTester.java +++ b/testsrc/compbio/runner/msa/TcoffeeParametersTester.java @@ -49,6 +49,7 @@ import compbio.metadata.RunnerConfig; import compbio.runner.OptionCombinator; import compbio.runner.msa.Tcoffee; import compbio.util.Util; + public class TcoffeeParametersTester { @@ -60,9 +61,9 @@ public class TcoffeeParametersTester { log.setLevel(Level.INFO); } - RunnerConfig tcoffeeConfig = AllTestSuit.TCOFFEE_PARAMETERS; + RunnerConfig tcoffeeConfig = compbio.runner.Util.getSupportedOptions(Tcoffee.class); OptionCombinator tcoffeeOpc = null; - PresetManager presets = AllTestSuit.TCOFFEE_PRESETS; + PresetManager presets = compbio.runner.Util.getPresets(Tcoffee.class); @BeforeMethod(groups = { AllTestSuit.test_group_runner, AllTestSuit.test_group_non_windows })