Skip to content

Commit

Permalink
Fix linting: Remove type hinting from test comment.
Browse files Browse the repository at this point in the history
  • Loading branch information
John Giannelos committed Apr 8, 2019
1 parent e073ef3 commit 30614d1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/test_auth.py
Original file line number Diff line number Diff line change
Expand Up @@ -502,7 +502,7 @@ def test_successful_authentication_basic_auth_token(self, token_mock, request_mo
self.assertEqual(sent_data['code'], post_data['code'])
self.assertEqual(sent_data['redirect_uri'], post_data['redirect_uri'])

auth = _kwargs['auth'] # type: requests.auth.HTTPBasicAuth
auth = _kwargs['auth'] # requests.auth.HTTPBasicAuth
self.assertEqual(auth.username, 'example_id')
self.assertEqual(auth.password, 'client_secret')
self.assertEqual(_kwargs['verify'], True)
Expand Down

0 comments on commit 30614d1

Please sign in to comment.