Skip to content

Commit

Permalink
Fixing typo in test error message (#40611)
Browse files Browse the repository at this point in the history
  • Loading branch information
Christoph Büscher committed Mar 28, 2019
1 parent 0dd2fdf commit 0355bc1
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -238,7 +238,7 @@ public void testDynamicIndexSettingsAreClassified() {
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));
}
}
Expand Down

0 comments on commit 0355bc1

Please sign in to comment.