[TEST] Do not filter gz files
This commit is contained in:
parent
d806b567e4
commit
0dbc83e7b0
6
pom.xml
6
pom.xml
|
@ -339,6 +339,12 @@
|
||||||
</includes>
|
</includes>
|
||||||
<filtering>true</filtering>
|
<filtering>true</filtering>
|
||||||
</testResource>
|
</testResource>
|
||||||
|
<testResource>
|
||||||
|
<directory>${basedir}/src/test/java</directory>
|
||||||
|
<includes>
|
||||||
|
<include>**/*.gz</include>
|
||||||
|
</includes>
|
||||||
|
</testResource>
|
||||||
<testResource>
|
<testResource>
|
||||||
<directory>${basedir}/src/test/resources</directory>
|
<directory>${basedir}/src/test/resources</directory>
|
||||||
<includes>
|
<includes>
|
||||||
|
|
|
@ -393,7 +393,7 @@ public class GeoFilterTests extends ElasticsearchIntegrationTest {
|
||||||
@Test
|
@Test
|
||||||
@Slow
|
@Slow
|
||||||
public void bulktest() throws Exception {
|
public void bulktest() throws Exception {
|
||||||
byte[] bulkAction = unZipData("/org/elasticsearch/search/geo/gzippedmap.json");
|
byte[] bulkAction = unZipData("/org/elasticsearch/search/geo/gzippedmap.gz");
|
||||||
|
|
||||||
String mapping = XContentFactory.jsonBuilder()
|
String mapping = XContentFactory.jsonBuilder()
|
||||||
.startObject()
|
.startObject()
|
||||||
|
|
Loading…
Reference in New Issue