mirror of
https://github.com/ceph/s3-tests.git
synced 2024-11-23 13:38:38 +00:00
s3: test_multipart_checksum_sha256 uses correct ChecksumSHA256 for second complete
the second complete is supposed to fail due to missing etag, so use the correct value of ChecksumSHA256 Signed-off-by: Casey Bodley <cbodley@redhat.com>
This commit is contained in:
parent
fc9db89f53
commit
64f178e7dc
1 changed files with 1 additions and 1 deletions
|
@ -13782,7 +13782,7 @@ def test_multipart_checksum_sha256():
|
|||
assert error_code == 'InvalidRequest'
|
||||
|
||||
# should reject the missing part checksum
|
||||
e = assert_raises(ClientError, client.complete_multipart_upload, Bucket=bucket, Key=key, UploadId=upload_id, ChecksumSHA256='bad', MultipartUpload={'Parts': [
|
||||
e = assert_raises(ClientError, client.complete_multipart_upload, Bucket=bucket, Key=key, UploadId=upload_id, ChecksumSHA256='SHA256', MultipartUpload={'Parts': [
|
||||
{'ETag': response['ETag'].strip('"'), 'PartNumber': 1}]})
|
||||
status, error_code = _get_status_and_error_code(e.response)
|
||||
assert status == 400
|
||||
|
|
Loading…
Reference in a new issue