From a5723d26c0e3b93df240c2d15d1e8d25a6dd1574 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Dani=20Rein=C3=B3n?= Date: Thu, 3 Feb 2022 12:43:41 +0100 Subject: [PATCH] chore: fix status_code casing --- tests/test_storage.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test_storage.py b/tests/test_storage.py index fd41ed77..e1e8fa42 100644 --- a/tests/test_storage.py +++ b/tests/test_storage.py @@ -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