From 390ce57f461db854d3ff062ded10bdc5fe8d52e3 Mon Sep 17 00:00:00 2001 From: Serene-Arc Date: Fri, 2 Jul 2021 14:57:10 +1000 Subject: [PATCH] Remove redundant parenthesis --- tests/site_downloaders/test_youtube.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/tests/site_downloaders/test_youtube.py b/tests/site_downloaders/test_youtube.py index afaebb7..f3a97e1 100644 --- a/tests/site_downloaders/test_youtube.py +++ b/tests/site_downloaders/test_youtube.py @@ -28,8 +28,9 @@ def test_find_resources_good(test_url: str, expected_hash: str): @pytest.mark.online -@pytest.mark.parametrize(('test_url'), ( - ('https://www.polygon.com/disney-plus/2020/5/14/21249881/gargoyles-animated-series-disney-plus-greg-weisman-interview-oj-simpson-goliath-chronicles'), +@pytest.mark.parametrize('test_url', ( + 'https://www.polygon.com/disney-plus/2020/5/14/21249881/gargoyles-animated-series-disney-plus-greg-weisman' + '-interview-oj-simpson-goliath-chronicles', )) def test_find_resources_bad(test_url: str): test_submission = MagicMock()