tests passing

This commit is contained in:
jbannon 2022-08-10 18:30:03 +00:00
parent bdf5dfb32a
commit c210f331ce
2 changed files with 2 additions and 2 deletions

View file

@ -118,6 +118,7 @@ def assert_expected_downloads(
output_directory: str | Path, output_directory: str | Path,
dry_run: bool, dry_run: bool,
expected_download_summary_file_name: str, expected_download_summary_file_name: str,
ignore_md5_hashes_for: Optional[List[str]] = None,
regenerate_expected_download_summary: bool = False, regenerate_expected_download_summary: bool = False,
): ):
if dry_run: if dry_run:
@ -134,5 +135,5 @@ def assert_expected_downloads(
) )
ExpectedDownloads.from_file(summary_full_path).assert_files_exist( ExpectedDownloads.from_file(summary_full_path).assert_files_exist(
relative_directory=output_directory relative_directory=output_directory, ignore_md5_hashes_for=ignore_md5_hashes_for
) )

View file

@ -59,7 +59,6 @@ class TestYoutubeVideo:
self, self,
music_video_config_path, music_video_config_path,
single_video_preset_dict_dl_args, single_video_preset_dict_dl_args,
expected_single_video_download,
output_directory, output_directory,
dry_run, dry_run,
): ):