diff --git a/lucene/CHANGES.txt b/lucene/CHANGES.txt index 8dccacdf708..e7dcc3eb4e0 100644 --- a/lucene/CHANGES.txt +++ b/lucene/CHANGES.txt @@ -18,6 +18,9 @@ New Features API Changes +* LUCENE-7163: refactor GeoRect, Polygon, and GeoUtils tests to geo + package in core (Nick Knize) + * LUCENE-7152: Refactor GeoUtils from lucene-spatial package to core (Nick Knize) diff --git a/lucene/sandbox/src/test/org/apache/lucene/document/TestLatLonPoint.java b/lucene/sandbox/src/test/org/apache/lucene/document/TestLatLonPoint.java index 73a368350bb..6d50f068d32 100644 --- a/lucene/sandbox/src/test/org/apache/lucene/document/TestLatLonPoint.java +++ b/lucene/sandbox/src/test/org/apache/lucene/document/TestLatLonPoint.java @@ -16,7 +16,7 @@ */ package org.apache.lucene.document; -import org.apache.lucene.spatial.util.GeoTestUtil; +import org.apache.lucene.geo.GeoTestUtil; import org.apache.lucene.util.LuceneTestCase; /** Simple tests for {@link LatLonPoint} */