Skip to content

Commit

Permalink
remove the data from the path
Browse files Browse the repository at this point in the history
  • Loading branch information
MAfarrag committed Dec 12, 2024
1 parent 1cee139 commit 84156bb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/test_gcs.py
Original file line number Diff line number Diff line change
Expand Up @@ -243,7 +243,7 @@ def test_upload_blob(self):
def test_download_blob(self):
blobs = self.bucket.list_blobs()
blob = self.bucket.get_blob(blobs[0])
download_path = f"tests/data/delete-downloaded-{blob.name}"
download_path = f"tests/delete-downloaded-{blob.name}"
self.bucket.download_blob(blob.name, download_path)
assert os.path.exists(download_path)
os.remove(download_path)
Expand Down

0 comments on commit 84156bb

Please sign in to comment.