JAL-3783 Reverting to using groovy-all-2.4.12-indy.jar to fix serious problem with...
[jalview.git] / test / jalview / ext / jmol / JmolCommandsTest.java
index 05b1041..21f7e19 100644 (file)
@@ -49,7 +49,7 @@ public class JmolCommandsTest
 {
   private JmolCommands testee;
 
-  @BeforeClass
+  @BeforeClass(alwaysRun = true)
   public void setUp()
   {
     testee = new JmolCommands();
@@ -236,7 +236,7 @@ public class JmolCommandsTest
   public void testSetBackgroundColour()
   {
     StructureCommandI cmd = testee.setBackgroundColour(Color.PINK);
-    assertEquals(cmd.getCommand(), "background [255, 175, 175]");
+    assertEquals(cmd.getCommand(), "background [255,175,175]");
   }
 
   @Test(groups = "Functional")