Skip to content

Commit

Permalink
Fix bad variable used (#2034)
Browse files Browse the repository at this point in the history
  • Loading branch information
cecton authored and asvetlov committed Jun 28, 2017
1 parent 6ba5d61 commit afbff7b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion aiohttp/test_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -401,7 +401,7 @@ def tearDown(self):
@asyncio.coroutine
def _get_client(self, app):
"""Return a TestClient instance."""
return TestClient(self.app, loop=self.loop)
return TestClient(app, loop=self.loop)


def unittest_run_loop(func, *args, **kwargs):
Expand Down

0 comments on commit afbff7b

Please sign in to comment.