Skip to content

Commit

Permalink
Fix zip unpacking in test_download_folder_from_gdrive
Browse files Browse the repository at this point in the history
  • Loading branch information
wkentaro committed Feb 1, 2024
1 parent cfb4021 commit 85f73f1
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion tests/test___main__.py
Original file line number Diff line number Diff line change
Expand Up @@ -90,8 +90,9 @@ def test_download_folder_from_gdrive():
except AssertionError as e:
print(e, file=sys.stderr)
else:
file_ids, md5s = zip(*folder_id_and_md5s)
raise AssertionError(
f"Failed to download any of the folders: {zip(*folder_id_and_md5s)[0]}"
f"Failed to download any of the folders: {file_ids}"
)


Expand Down

0 comments on commit 85f73f1

Please sign in to comment.