S3 - Dont error when deleting unknown keys (#4036)
* #1581 - S3 - Dont error when deleting unknown keys * Update test_s3bucket_path.py
This commit is contained in:
parent
21a77510b3
commit
0f4ab4da1c
3 changed files with 21 additions and 9 deletions
|
|
@ -315,8 +315,8 @@ def test_delete_keys_with_invalid():
|
|||
|
||||
result = bucket.delete_keys(["abc", "file3"])
|
||||
|
||||
result.deleted.should.have.length_of(1)
|
||||
result.errors.should.have.length_of(1)
|
||||
result.deleted.should.have.length_of(2)
|
||||
result.errors.should.have.length_of(0)
|
||||
keys = bucket.get_all_keys()
|
||||
keys.should.have.length_of(3)
|
||||
keys[0].name.should.equal("file1")
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue