Fixing typo in test error message (#40611)
This commit is contained in:
parent
6c13ed7db8
commit
a13be65b01
|
@ -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));
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue