Skip to content

Commit

Permalink
Fix Google Cloud tests (#1476)
Browse files Browse the repository at this point in the history
  • Loading branch information
jschneier authored Nov 23, 2024
1 parent f029e50 commit fda4e23
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/test_gcloud.py
Original file line number Diff line number Diff line change
Expand Up @@ -520,7 +520,7 @@ def test_storage_save_gzipped(self, *args):
"""
Test saving a gzipped file
"""
name = "test_storage_save.js.gz"
name = "test_storage_save.css.gz"
content = ContentFile("I am gzip'd", name=name)

blob = Blob("x", None)
Expand All @@ -536,7 +536,7 @@ def test_storage_save_gzipped(self, *args):
retry=DEFAULT_RETRY,
size=11,
predefined_acl=None,
content_type="application/javascript",
content_type="text/css",
)
finally:
patcher.stop()
Expand Down

0 comments on commit fda4e23

Please sign in to comment.