Skip to content

Commit 039dea1

Browse files
committed
fix CI
1 parent 615f30b commit 039dea1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/test_gcloud.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -581,7 +581,7 @@ def test_storage_read_gzip(self, *args):
581581
file = GoogleCloudFile(name, "rb", self.storage)
582582
blob = mock.MagicMock()
583583
file.blob = blob
584-
blob.download_to_file = lambda f: f.write(b"I should not be gzip'd")
584+
blob.download_to_file = lambda f, checksum=None: f.write(b"I should not be gzip'd")
585585
blob.content_encoding = "gzip"
586586
f = file._get_file()
587587

0 commit comments

Comments
 (0)