mirror of
https://github.com/honeymoose/OpenSearch.git
synced 2025-03-25 17:38:44 +00:00
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 cad0608cdb28e2b8485e5c01c26579a35cb84356 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");
|
||||
// chunk > 5tb should fail
|
||||
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) {
|
||||
|
Loading…
x
Reference in New Issue
Block a user