We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 615f30b commit 039dea1Copy full SHA for 039dea1
tests/test_gcloud.py
@@ -581,7 +581,7 @@ def test_storage_read_gzip(self, *args):
581
file = GoogleCloudFile(name, "rb", self.storage)
582
blob = mock.MagicMock()
583
file.blob = blob
584
- blob.download_to_file = lambda f: f.write(b"I should not be gzip'd")
+ blob.download_to_file = lambda f, checksum=None: f.write(b"I should not be gzip'd")
585
blob.content_encoding = "gzip"
586
f = file._get_file()
587
0 commit comments