JAL-3855 auto select clusters and fix up colouring/propagation on calculation & tree...
[jalview.git] / test / jalview / analysis / AverageDistanceEngineTest.java
index f7688b5..760e0ba 100644 (file)
@@ -45,7 +45,7 @@ public class AverageDistanceEngineTest
     Cache.loadProperties("test/jalview/bin/TestProps.jvprops");
   }
 
-  @Test
+  @Test(groups = { "Functional" })
   public void testUPGMAEngine() throws Exception
   {
     AlignFrame af = new FileLoader(false).LoadFileWaitTillLoaded(
@@ -67,7 +67,7 @@ public class AverageDistanceEngineTest
             + matrix.getMin());
     long start = System.currentTimeMillis();
     AverageDistanceEngine clusterer = new AverageDistanceEngine(
-            af.getViewport(), null, matrix);
+            af.getViewport(), null, matrix, false);
     System.out.println("built a tree in "
             + (System.currentTimeMillis() - start) * 0.001 + " seconds.");
     StringBuffer sb = new StringBuffer();
@@ -103,7 +103,6 @@ public class AverageDistanceEngineTest
       }
       System.out.println("\\");
     }
-
   }
 
 }