From fda4e2375bfc5b400593ce01f6516dc3264d0357 Mon Sep 17 00:00:00 2001 From: Josh Schneier Date: Fri, 22 Nov 2024 19:39:31 -0800 Subject: [PATCH] Fix Google Cloud tests (#1476) --- tests/test_gcloud.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/test_gcloud.py b/tests/test_gcloud.py index cacb44d3..f0c536e1 100644 --- a/tests/test_gcloud.py +++ b/tests/test_gcloud.py @@ -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) @@ -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()