We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8741b0b commit db61693Copy full SHA for db61693
1 file changed
packages/google-cloud-storage/tests/unit/test_transfer_manager.py
@@ -563,8 +563,8 @@ def test_download_many_to_path_raises_invalid_path_error():
563
and "will **NOT** be downloaded" in str(warning.message)
564
]
565
566
- assert len(invalid_path_warnings) == 1, "---".join(
567
- [str(warning.message) for warning in w]
+ assert len(invalid_path_warnings) == 1, (
+ f"Expected 1 invalid path warning, found {len(invalid_path_warnings)}. All warnings: {[str(warning.message) for warning in w]}"
568
)
569
570
assert len(results) == 1
0 commit comments