From 0705eab7ef27ad828143abf062258fe8ac67f4ad Mon Sep 17 00:00:00 2001 From: David Wayne Smiley Date: Wed, 9 Jul 2014 12:37:49 +0000 Subject: [PATCH] LUCENE-5714: TestBBoxStrategy needs to declare docValues requirement git-svn-id: https://svn.apache.org/repos/asf/lucene/dev/trunk@1609134 13f79535-47bb-0310-9956-ffa450edef68 --- .../org/apache/lucene/spatial/bbox/TestBBoxStrategy.java | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/lucene/spatial/src/test/org/apache/lucene/spatial/bbox/TestBBoxStrategy.java b/lucene/spatial/src/test/org/apache/lucene/spatial/bbox/TestBBoxStrategy.java index 3cc72acdaaf..6fabcf34b9b 100644 --- a/lucene/spatial/src/test/org/apache/lucene/spatial/bbox/TestBBoxStrategy.java +++ b/lucene/spatial/src/test/org/apache/lucene/spatial/bbox/TestBBoxStrategy.java @@ -35,6 +35,11 @@ import java.io.IOException; public class TestBBoxStrategy extends RandomSpatialOpStrategyTestCase { + @Override + protected boolean needsDocValues() { + return true; + } + @Override protected Shape randomIndexedShape() { Rectangle world = ctx.getWorldBounds();