Skip to content

Commit

Permalink
chore: fix status_code casing
Browse files Browse the repository at this point in the history
  • Loading branch information
Dani Reinón committed Feb 3, 2022
1 parent 76922a7 commit a5723d2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/test_storage.py
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ def finalizer():
except StorageException as e:
# Ignore 404 responses since they mean the bucket was already deleted
response = e.args[0]
if response["status_code"] != 404:
if response["statusCode"] != 404:
raise e
continue

Expand Down

0 comments on commit a5723d2

Please sign in to comment.