From ee862f83c9ffba49412141ea58a97bf4d367a9d9 Mon Sep 17 00:00:00 2001 From: Jesse Bannon Date: Fri, 27 Oct 2023 16:34:24 -0700 Subject: [PATCH] ugh --- .../plugins/file_convert/output_custom_ffmpeg.json | 2 +- .../plugins/match_filters/test_match_filters_partial.json | 2 +- tests/unit/cli/test_output_transaction_log.py | 4 ++-- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/tests/resources/expected_downloads_summaries/plugins/file_convert/output_custom_ffmpeg.json b/tests/resources/expected_downloads_summaries/plugins/file_convert/output_custom_ffmpeg.json index aea1b52f..2e40af6e 100644 --- a/tests/resources/expected_downloads_summaries/plugins/file_convert/output_custom_ffmpeg.json +++ b/tests/resources/expected_downloads_summaries/plugins/file_convert/output_custom_ffmpeg.json @@ -1,6 +1,6 @@ { ".ytdl-sub-file_convert_test-download-archive.json": "8fa4bf42c9686f8520ce107e48b73215", "file_convert_test/When you hear Hugh Jackman is returning as Wolverine in Deadpool 3.jpg": "662fcaadf6e80d63591bac19a5fdffb0", - "file_convert_test/When you hear Hugh Jackman is returning as Wolverine in Deadpool 3.mkv": "591e4c18ac2a6d199dcd0df67c676184", + "file_convert_test/When you hear Hugh Jackman is returning as Wolverine in Deadpool 3.mkv": "8c7a8ed80f9bd73ace64b187ccea1448", "file_convert_test/When you hear Hugh Jackman is returning as Wolverine in Deadpool 3.nfo": "752e6b6eea853c8a1f62faa4b841b292" } \ No newline at end of file diff --git a/tests/resources/expected_downloads_summaries/plugins/match_filters/test_match_filters_partial.json b/tests/resources/expected_downloads_summaries/plugins/match_filters/test_match_filters_partial.json index ef55497a..d84011db 100644 --- a/tests/resources/expected_downloads_summaries/plugins/match_filters/test_match_filters_partial.json +++ b/tests/resources/expected_downloads_summaries/plugins/match_filters/test_match_filters_partial.json @@ -2,5 +2,5 @@ ".ytdl-sub-match_filter_test-download-archive.json": "11d548b31fdb1aa0f7a1e9da6dde32ea", "match_filter_test/Jesse's Minecraft Server [Trailer - Mar.21].jpg": "e7830aa8a64b0cde65ba3f7e5fc56530", "match_filter_test/Jesse's Minecraft Server [Trailer - Mar.21].nfo": "d85f4500bb5d8a2425d734a23b5a944c", - "match_filter_test/Jesse's Minecraft Server [Trailer - Mar.21].webm": "b5b89b1cb1d6a4cf0d37fc42517c1acc" + "match_filter_test/Jesse's Minecraft Server [Trailer - Mar.21].webm": "e8dfa6c220d681ac9d1467927b666768" } \ No newline at end of file diff --git a/tests/unit/cli/test_output_transaction_log.py b/tests/unit/cli/test_output_transaction_log.py index c8c3be89..bc3b7f9e 100644 --- a/tests/unit/cli/test_output_transaction_log.py +++ b/tests/unit/cli/test_output_transaction_log.py @@ -74,7 +74,7 @@ def test_transaction_log_to_file( assert subscriptions with open(transaction_log_file_path, "r", encoding="utf-8") as transaction_log_file: - assert transaction_log_file.readlines()[0] == "Transaction log for john_smith:\n" + assert transaction_log_file.readlines()[0] == "Transaction log for Rick Astley:\n" def test_transaction_log_to_logger( @@ -94,7 +94,7 @@ def test_transaction_log_to_logger( ], ), assert_logs( logger=transaction_logger, - expected_message="Transaction log for john_smith:\n", + expected_message="Transaction log for Rick Astley:\n", log_level="info", ): subscriptions = main()