From 85f73f123e45565c4b12d04d1610a02c9f367373 Mon Sep 17 00:00:00 2001 From: Kentaro Wada Date: Thu, 1 Feb 2024 23:49:04 +0900 Subject: [PATCH] Fix zip unpacking in test_download_folder_from_gdrive --- tests/test___main__.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tests/test___main__.py b/tests/test___main__.py index b94fc43b..376768af 100644 --- a/tests/test___main__.py +++ b/tests/test___main__.py @@ -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}" )