mirror of https://github.com/apache/lucene.git
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
This commit is contained in:
parent
7cffcc7422
commit
0705eab7ef
|
@ -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();
|
||||
|
|
Loading…
Reference in New Issue