diff --git a/tests/test___main__.py b/tests/test___main__.py index 403aee7c..b94fc43b 100644 --- a/tests/test___main__.py +++ b/tests/test___main__.py @@ -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():