JAL-4090 JAL-1551 source license
[jalview.git] / test / jalview / util / MapListTest.java
index fb0cdae..03b3c99 100644 (file)
@@ -36,7 +36,7 @@ import java.util.List;
 import org.testng.annotations.BeforeClass;
 import org.testng.annotations.Test;
 
-import jalview.bin.Cache;
+import jalview.bin.Console;
 import jalview.gui.JvOptionPane;
 
 public class MapListTest
@@ -44,7 +44,7 @@ public class MapListTest
   @BeforeClass(alwaysRun = true)
   public void setUp()
   {
-    Cache.initLogger();
+    Console.initLogger();
   }
 
   @BeforeClass(alwaysRun = true)
@@ -912,6 +912,7 @@ public class MapListTest
     ranges.clear();
     ranges.add(new int[] { 10, 30 });
     ranges.add(new int[] { 15, 25 });
+
     merged = MapList.coalesceRanges(ranges);
     assertEquals(2, merged.size());
     assertArrayEquals(new int[] { 10, 30 }, merged.get(0));