From 10a378bd46541c123f0d7e0756f2fbc3ec99f910 Mon Sep 17 00:00:00 2001 From: Dan Palmer Date: Mon, 11 Dec 2017 14:33:43 +0000 Subject: [PATCH] Typo --- docs/sanic/testing.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/sanic/testing.md b/docs/sanic/testing.md index 0aca9184..00a604bf 100644 --- a/docs/sanic/testing.md +++ b/docs/sanic/testing.md @@ -20,7 +20,7 @@ def test_index_put_not_allowed(): assert response.status == 405 ``` -Internally, each time you call one of the `test_client` methods, the Sanic app is run at `127.0.01:42101` and +Internally, each time you call one of the `test_client` methods, the Sanic app is run at `127.0.0.1:42101` and your test request is executed against your application, using `aiohttp`. The `test_client` methods accept the following arguments and keyword arguments: