Fix one more test after dropping type awareness

Original commit: elastic/x-pack-elasticsearch@ab6949f353
This commit is contained in:
Nik Everett 2017-08-03 17:39:24 -04:00
parent 4f42de6b1a
commit 35389d3be0
1 changed files with 1 additions and 1 deletions

View File

@ -101,7 +101,7 @@ public class SqlMultinodeIT extends ESRestTestCase {
expected.put("size", 1);
Map<String, Object> actual = responseToMap(client.performRequest("POST", "/_sql", emptyMap(),
new StringEntity("{\"query\": \"SELECT COUNT(*) FROM test.test\"}", ContentType.APPLICATION_JSON)));
new StringEntity("{\"query\": \"SELECT COUNT(*) FROM test\"}", ContentType.APPLICATION_JSON)));
if (false == expected.equals(actual)) {
NotEqualMessageBuilder message = new NotEqualMessageBuilder();