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 d204e63 commit 9d85a7e
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 @@ -58,8 +58,9 @@ def test_download_large_file_from_gdrive():
print(e, file=sys.stderr)
continue
else:
file_ids, _ = zip(*file_id_and_md5s)
raise AssertionError(
f"Failed to download any of the files: {zip(*file_id_and_md5s)[0]}"
f"Failed to download any of the files: {file_ids}"
)


Expand Down

0 comments on commit 9d85a7e

Please sign in to comment.