summaryrefslogtreecommitdiff
path: root/core/src/test/java/org/elasticsearch/common/xcontent/support/filtering/FilterPathTests.java
diff options
context:
space:
mode:
Diffstat (limited to 'core/src/test/java/org/elasticsearch/common/xcontent/support/filtering/FilterPathTests.java')
-rw-r--r--core/src/test/java/org/elasticsearch/common/xcontent/support/filtering/FilterPathTests.java9
1 files changed, 7 insertions, 2 deletions
diff --git a/core/src/test/java/org/elasticsearch/common/xcontent/support/filtering/FilterPathTests.java b/core/src/test/java/org/elasticsearch/common/xcontent/support/filtering/FilterPathTests.java
index 5068300771..80cc12b5f3 100644
--- a/core/src/test/java/org/elasticsearch/common/xcontent/support/filtering/FilterPathTests.java
+++ b/core/src/test/java/org/elasticsearch/common/xcontent/support/filtering/FilterPathTests.java
@@ -21,7 +21,12 @@ package org.elasticsearch.common.xcontent.support.filtering;
import org.elasticsearch.test.ESTestCase;
-import static org.hamcrest.Matchers.*;
+import static org.hamcrest.Matchers.arrayWithSize;
+import static org.hamcrest.Matchers.equalTo;
+import static org.hamcrest.Matchers.is;
+import static org.hamcrest.Matchers.isEmptyString;
+import static org.hamcrest.Matchers.notNullValue;
+import static org.hamcrest.Matchers.nullValue;
public class FilterPathTests extends ESTestCase {
@@ -348,4 +353,4 @@ public class FilterPathTests extends ESTestCase {
assertThat(filterPath.getSegment(), isEmptyString());
assertSame(filterPath, FilterPath.EMPTY);
}
-} \ No newline at end of file
+}