Skip to content

Commit

Permalink
Fix typo in code example in testing docs (#4108)
Browse files Browse the repository at this point in the history
  • Loading branch information
naglis authored and asvetlov committed Sep 27, 2019
1 parent be95c61 commit 3bc5bd6
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions CHANGES/4108.doc
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Fix typo in code example in testing docs.
2 changes: 1 addition & 1 deletion docs/testing.rst
Original file line number Diff line number Diff line change
Expand Up @@ -512,7 +512,7 @@ basis, the TestClient object can be used directly::

with loop_context() as loop:
app = _create_example_app()
client = TestClient(TestSever(app), loop=loop)
client = TestClient(TestServer(app), loop=loop)
loop.run_until_complete(client.start_server())
root = "http://127.0.0.1:{}".format(port)

Expand Down

0 comments on commit 3bc5bd6

Please sign in to comment.