Fix inequality symbol in test assertion
This commit fixes the inequality symbol used in a test assertion in
RepositoryS3SettingsTests#testInvalidChunkBufferSizeRepositorySettings. The
inequality symbol was previously backwards but fixed in commit
cad0608cdb
but fixing the inequality
symbol here was missed in that commit.
Closes #18449
This commit is contained in:
parent
cec9a94b96
commit
6e3b49c522
|
@ -316,7 +316,7 @@ public class RepositoryS3SettingsTests extends ESTestCase {
|
||||||
"Failed to parse value [4mb] for setting [buffer_size] must be >= 5mb");
|
"Failed to parse value [4mb] for setting [buffer_size] must be >= 5mb");
|
||||||
// chunk > 5tb should fail
|
// chunk > 5tb should fail
|
||||||
internalTestInvalidChunkBufferSizeSettings(new ByteSizeValue(5, ByteSizeUnit.MB), new ByteSizeValue(6, ByteSizeUnit.TB),
|
internalTestInvalidChunkBufferSizeSettings(new ByteSizeValue(5, ByteSizeUnit.MB), new ByteSizeValue(6, ByteSizeUnit.TB),
|
||||||
"Failed to parse value [6tb] for setting [chunk_size] must be =< 5tb");
|
"Failed to parse value [6tb] for setting [chunk_size] must be <= 5tb");
|
||||||
}
|
}
|
||||||
|
|
||||||
private Settings buildSettings(Settings... global) {
|
private Settings buildSettings(Settings... global) {
|
||||||
|
|
Loading…
Reference in New Issue