Skip to content

Commit

Permalink
Remove TestKeySnapshotLong
Browse files Browse the repository at this point in the history
Also shrink KMeans sphere dataset size
  • Loading branch information
cliffclick committed Aug 7, 2014
1 parent 1bf6724 commit 970bfb6
Show file tree
Hide file tree
Showing 4 changed files with 1 addition and 45 deletions.
2 changes: 1 addition & 1 deletion src/test/java/hex/KMeans2Test.java
Original file line number Diff line number Diff line change
Expand Up @@ -160,7 +160,7 @@ static double dist(double[] cluster, double[] goal) {

@Test public void testSphere() {
Key dest = Key.make("dest");
Frame frame = parseFrame(dest, "smalldata/syn_sphere3.csv");
Frame frame = parseFrame(dest, "smalldata/syn_sphere2.csv");
KMeans2 algo = new KMeans2();
algo.source = frame;
algo.k = 3;
Expand Down
1 change: 0 additions & 1 deletion src/test/java/water/JUnitRunner.java
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,6 @@ private static void filter(List<Class> tests) {
tests.remove(GLMRandomTest.Short.class);
tests.remove(GLMRandomTest.Long.class);
tests.remove(ParserTest2.ParseAllSmalldata.class);
tests.remove(TestKeySnapshotLong.class);
// Skip abstract test
tests.remove(TreeTestWithBalanceAndCrossVal.class);

Expand Down
42 changes: 0 additions & 42 deletions src/test/java/water/TestKeySnapshotLong.java

This file was deleted.

1 change: 0 additions & 1 deletion src/test/java/water/suites/AllTestsSuite.java
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,6 @@
water.score.ScoreTest.class,
water.serial.ModelSerializationTest.class,
water.TestKeySnapshot.class,
water.TestKeySnapshotLong.class,
water.TypeAheadTest.class,
water.util.ModelUtilsTest.class,
water.util.SBTest.class,
Expand Down

0 comments on commit 970bfb6

Please sign in to comment.