Skip to content

Commit

Permalink
Fix PEP8 failure in test_adapter
Browse files Browse the repository at this point in the history
Flake8 is still set up locally to use an 80 char line length. This is
debatable, but i'm going to keep it for now.
  • Loading branch information
Jamie Lennox authored and jamielennox committed Apr 28, 2019
1 parent f4f3b0a commit 722206a
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion tests/test_adapter.py
Original file line number Diff line number Diff line change
Expand Up @@ -329,7 +329,9 @@ def test_with_regexp(self):
self.assertEqual('resp', resp.text)

def test_with_purl(self):
self.adapter.register_uri('GET', purl.URL('mock://www.tester.com/a'), text='resp')
self.adapter.register_uri('GET',
purl.URL('mock://www.tester.com/a'),
text='resp')

resp = self.session.get('mock://www.tester.com/a')
self.assertEqual('resp', resp.text)
Expand Down

0 comments on commit 722206a

Please sign in to comment.