add missing args in testes
2 files changed, 9 insertions(+), 3 deletions(-)

M tests/test_browser.py
M tests/test_httpclient.py
M tests/test_browser.py +6 -2
@@ 9,7 9,9 @@ def http_client_config1():
         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 @@ def http_client_config2():
         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()

          
M tests/test_httpclient.py +3 -1
@@ 40,7 40,9 @@ def http_client_config(provider_name, us
         name=provider_name,
         url=url,
         username=username,
-        password=password
+        password=password,
+        max_bit_rate= None,
+        format= None,
     )
 
 def test_salt():