Skip to content

Commit

Permalink
Fix incorrect dl path write
Browse files Browse the repository at this point in the history
  • Loading branch information
freddyheppell committed Dec 17, 2024
1 parent 626b2cf commit cdb9702
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/integration/download.py
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ def dl_cassette(data):
with requests.get(data["url"], allow_redirects=True, stream=True) as r:
r.raise_for_status()

with open(dl_gz_path / dl_gz_path, "wb") as f:
with open(dl_gz_path, "wb") as f:
for chunk in r.iter_content(chunk_size=8192):
f.write(chunk)

Expand Down

0 comments on commit cdb9702

Please sign in to comment.