diff --git a/tests/test_helpers.py b/tests/test_helpers.py index 267abade82f..99d15f167c0 100644 --- a/tests/test_helpers.py +++ b/tests/test_helpers.py @@ -79,12 +79,12 @@ def test_basic_auth_decode(): def test_basic_auth_decode_not_basic(): with pytest.raises(ValueError): - auth = helpers.BasicAuth.decode('Complex bmtpbTpwd2Q=') + helpers.BasicAuth.decode('Complex bmtpbTpwd2Q=') def test_basic_auth_decode_bad_base64(): with pytest.raises(ValueError): - auth = helpers.BasicAuth.decode('Basic bmtpbTpwd2Q') + helpers.BasicAuth.decode('Basic bmtpbTpwd2Q') def test_invalid_formdata_params():