From 04a48af4c9ec9785e331d81b89f101e96b40e0bb Mon Sep 17 00:00:00 2001 From: Colin Powell Date: Wed, 22 Mar 2023 23:56:02 -0400 Subject: [PATCH] Fix scraper tests for podcasts --- tests/podcasts_tests/test_scrapers.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tests/podcasts_tests/test_scrapers.py b/tests/podcasts_tests/test_scrapers.py index f59981b..24fd064 100644 --- a/tests/podcasts_tests/test_scrapers.py +++ b/tests/podcasts_tests/test_scrapers.py @@ -23,4 +23,5 @@ def test_get_not_allowed_from_mopidy(): assert result_dict["title"] == query assert result_dict["description"] == expected_desc assert result_dict["image_url"] == expected_img_url - assert result_dict["publisher"] == "NPR" + assert result_dict["producer"] == "NPR" + assert result_dict["url"] == None