Skip to content

Commit

Permalink
Fix the false assertion in test test_ignore_files_not_being_part_of_t…
Browse files Browse the repository at this point in the history
…he_feed
  • Loading branch information
dplocki committed Feb 10, 2024
1 parent 68d034d commit e896dc5
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion e2e/test_logic.py
Original file line number Diff line number Diff line change
Expand Up @@ -71,4 +71,7 @@ def test_ignore_files_not_being_part_of_the_feed(
run_podcast_downloader()

# Assert
podcast_directory.is_containing_only(not_podcasts_files + [last_podcast_file])
podcast_directory.is_containing_only(
[file_name.lower() for file_name in not_podcasts_files]
+ [last_podcast_file.lower()]
)

0 comments on commit e896dc5

Please sign in to comment.