fix test bug

git-svn-id: https://svn.apache.org/repos/asf/lucene/dev/trunk@1642253 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Robert Muir 2014-11-28 01:37:33 +00:00
parent bab0b46337
commit b9ea4d0229
1 changed files with 1 additions and 1 deletions

View File

@ -578,6 +578,6 @@ public class TestFieldCacheVsDocValues extends LuceneTestCase {
protected boolean codecAcceptsHugeBinaryValues(String field) { protected boolean codecAcceptsHugeBinaryValues(String field) {
String name = TestUtil.getDocValuesFormat(field); String name = TestUtil.getDocValuesFormat(field);
return !(name.equals("Memory") || name.equals("Direct")); return !(name.equals("Memory")); // Direct has a different type of limit
} }
} }