[TESTS] Fix test bug in SimpleValidateQueryTests.

This commit is contained in:
Adrien Grand 2014-05-23 00:52:56 +02:00
parent 0ff0985e01
commit 0d3410a837
1 changed files with 1 additions and 1 deletions

View File

@ -80,7 +80,7 @@ public class SimpleValidateQueryTests extends ElasticsearchIntegrationTest {
private static String filter(String uncachedFilter) {
String filter = uncachedFilter;
if (cluster().hasFilterCache()) {
filter = "cached(" + filter + ")";
filter = "cache(" + filter + ")";
}
return filter;
}