Skip to content

Commit

Permalink
Fix broken tests
Browse files Browse the repository at this point in the history
  • Loading branch information
asvetlov committed Oct 3, 2018
1 parent fabd09a commit 564c43f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/test_web_request_handler.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ async def serve(request):
return web.Response()


def test_repr() -> None:
async def test_repr() -> None:
manager = web.Server(serve)
handler = manager()

Expand All @@ -18,7 +18,7 @@ def test_repr() -> None:
assert '<RequestHandler connected>' == repr(handler)


def test_connections() -> None:
async def test_connections() -> None:
manager = web.Server(serve)
assert manager.connections == []

Expand Down

0 comments on commit 564c43f

Please sign in to comment.