[TEST] Fix IndexLookupTests.testCallWithDifferentFlagsFails.

This commit is contained in:
Adrien Grand 2014-07-02 10:09:29 +02:00
parent 309a284e8d
commit e76eb228b2
1 changed files with 1 additions and 1 deletions

View File

@ -181,7 +181,7 @@ public class IndexLookupTests extends ElasticsearchIntegrationTest {
"got: " + e.getDetailedMessage(), "got: " + e.getDetailedMessage(),
e.getDetailedMessage() e.getDetailedMessage()
.indexOf( .indexOf(
"You must call get with all required flags! Instead of _index['int_payload_field'].get('b', _FREQUENCIES) and _index['int_payload_field'].get('b', _POSITIONS) call _index['int_payload_field'].get('b', _FREQUENCIES | _POSITIONS) once]; "), "You must call get with all required flags! Instead of _index['int_payload_field'].get('b', _FREQUENCIES) and _index['int_payload_field'].get('b', _POSITIONS) call _index['int_payload_field'].get('b', _FREQUENCIES | _POSITIONS) once]"),
Matchers.greaterThan(-1)); Matchers.greaterThan(-1));
} }