disable test method for deprecated encoding: its too memory-hungry

This commit is contained in:
Robert Muir 2016-03-29 09:51:09 -04:00
parent c769199c20
commit 5958bcb68e
1 changed files with 5 additions and 0 deletions

View File

@ -70,4 +70,9 @@ public class TestLegacyGeoPointQuery extends BaseGeoPointTestCase {
public void testRandomDistanceHuge() throws Exception {
assumeTrue("legacy encoding is too slow/hangs on this test", false);
}
@Override
public void testSamePointManyTimes() throws Exception {
assumeTrue("legacy encoding goes OOM on this test", false);
}
}