JAL-1645 source formatting and organise imports
[jalview.git] / test / jalview / datamodel / AlignedCodonTest.java
index a6802b1..0eec429 100644 (file)
@@ -9,7 +9,7 @@ import org.testng.annotations.Test;
 public class AlignedCodonTest
 {
 
-  @Test(groups ={ "Functional" })
+  @Test(groups = { "Functional" })
   public void testEquals()
   {
     AlignedCodon ac = new AlignedCodon(1, 3, 4);
@@ -20,8 +20,9 @@ public class AlignedCodonTest
     assertTrue(ac.equals(ac));
   }
 
-  @Test(groups ={ "Functional" })
-  public void testToString() {
+  @Test(groups = { "Functional" })
+  public void testToString()
+  {
     AlignedCodon ac = new AlignedCodon(1, 3, 4);
     assertEquals("[1, 3, 4]", ac.toString());
   }