We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4fc3323 commit b552484Copy full SHA for b552484
server/src/test/java/org/elasticsearch/transport/RemoteClusterSettingsTests.java
@@ -139,10 +139,7 @@ public void testSkipUnavailableAlwaysTrueIfCPSEnabled() {
139
.build()
140
)
141
);
142
- assertThat(
143
- exception.getMessage(),
144
- equalTo("setting [" + skipUnavailableSetting.getKey() + "] is unavailable when CPS is enabled")
145
- );
+ assertThat(exception.getMessage(), equalTo("setting [" + skipUnavailableSetting.getKey() + "] is unavailable when CPS is enabled"));
146
147
// Should not throw if the setting is not present, returning the expected default value of true.
148
assertTrue(skipUnavailableSetting.get(Settings.builder().put(cpsEnabledSettings).put(proxyEnabledSettings).build()));
0 commit comments