Skip to content

Commit

Permalink
Fix test
Browse files Browse the repository at this point in the history
  • Loading branch information
jasontedor committed May 15, 2018
1 parent 48c4166 commit 9916d9c
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ private void runTestResizeCopySettingsDeprecated(
assertThat(e, hasToString(containsString("parameter [copy_settings] can not be explicitly set to [false]")));
} else {
handler.prepareRequest(request, mock(NodeClient.class));
if ("true".equals(copySettings)) {
if ("".equals(copySettings) || "true".equals(copySettings)) {
assertWarnings("parameter [copy_settings] is deprecated and will be removed in 8.0.0");
}
}
Expand Down

0 comments on commit 9916d9c

Please sign in to comment.