Skip to content

Commit

Permalink
Fix error message in test_download_large_file_from_gdrive
Browse files Browse the repository at this point in the history
  • Loading branch information
wkentaro committed Feb 1, 2024
1 parent 545bca7 commit cfb4021
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions tests/test___main__.py
Original file line number Diff line number Diff line change
Expand Up @@ -58,9 +58,8 @@ def test_download_large_file_from_gdrive():
print(e, file=sys.stderr)
continue
else:
raise AssertionError(
f"Failed to download any of the files: {zip(*file_id_and_md5s)[0]}"
)
file_ids, _ = zip(*file_id_and_md5s)
raise AssertionError(f"Failed to download any of the files: {file_ids}")


def test_download_and_extract():
Expand Down

0 comments on commit cfb4021

Please sign in to comment.