Skip to content

Commit

Permalink
Flake8 fixes.
Browse files Browse the repository at this point in the history
  • Loading branch information
luhn committed Jan 19, 2016
1 parent 337346e commit ef0e9f7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/test_helpers.py
Original file line number Diff line number Diff line change
Expand Up @@ -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():
Expand Down

0 comments on commit ef0e9f7

Please sign in to comment.