Fixing typo in test error message (#40611)

This commit is contained in:
Christoph Büscher 2019-03-28 22:11:46 +01:00
parent 6c13ed7db8
commit a13be65b01
1 changed files with 1 additions and 1 deletions

View File

@ -240,7 +240,7 @@ public class TransportResumeFollowActionTests extends ESTestCase {
if (setting.isDynamic()) {
boolean notReplicated = TransportResumeFollowAction.NON_REPLICATED_SETTINGS.contains(setting);
boolean replicated = replicatedSettings.contains(setting);
assertThat("setting [" + setting.getKey() + "] is not classified as replicated xor not replicated",
assertThat("setting [" + setting.getKey() + "] is not classified as replicated or not replicated",
notReplicated ^ replicated, is(true));
}
}