# HG changeset patch # User Reed Wade # Date 1595321334 -7200 # Tue Jul 21 10:48:54 2020 +0200 # Node ID f01f69ac0cf98bfb0df87a04dd170c4860c6c6f4 # Parent a6b0672fa9a6e8b8919b3c14302534212c8d972a add missing args in testes diff --git a/tests/test_browser.py b/tests/test_browser.py --- a/tests/test_browser.py +++ b/tests/test_browser.py @@ -9,7 +9,9 @@ name="a_provider_name", url="https://a.music", username="toot", - password="tiit" + password="tiit", + max_bit_rate= None, + format= None ) @pytest.fixture @@ -18,7 +20,9 @@ name="another_provider_name", url="https://another.music", username="foo", - password="bar" + password="bar", + max_bit_rate= None, + format= None ) mock_get_artists_data = mock.Mock() diff --git a/tests/test_httpclient.py b/tests/test_httpclient.py --- a/tests/test_httpclient.py +++ b/tests/test_httpclient.py @@ -40,7 +40,9 @@ name=provider_name, url=url, username=username, - password=password + password=password, + max_bit_rate= None, + format= None, ) def test_salt():