Skip to content

Commit

Permalink
Fix test_ignore_files_not_being_part_of_the_feed
Browse files Browse the repository at this point in the history
  • Loading branch information
dplocki committed Feb 26, 2024
1 parent 753b588 commit 0df6274
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion e2e/test_logic.py
Original file line number Diff line number Diff line change
Expand Up @@ -121,4 +121,8 @@ def test_configuration_during_filling_up_gaps_should_not_download_existing_files
run_podcast_downloader()

# Assert
assert set(feed.get_requested_files_list()) == set(files_to_download)
assert set(
file_name.lower()
for file_name in feed.get_requested_files_list()
if file_name.endswith(".mp3")
) == set(file_name.lower() for file_name in (files_to_download + files_in_the_gap))

0 comments on commit 0df6274

Please sign in to comment.