Browse Source

[TEST] Fix NumberFieldMapperTests.testNoDocValues to call correct helper method.

Nicholas Knize 9 years ago
parent
commit
80c918a13a

+ 1 - 1
core/src/test/java/org/elasticsearch/index/mapper/NumberFieldMapperTests.java

@@ -128,7 +128,7 @@ public class NumberFieldMapperTests extends ESSingleNodeTestCase {
 
     public void testNoDocValues() throws Exception {
         for (String type : TYPES) {
-            doTestNotIndexed(type);
+            doTestNoDocValues(type);
         }
     }