From: Tim Gates Date: Sun, 26 Jan 2020 06:24:41 +0000 (+1100) Subject: Fix simple typo: conncurrent -> concurrent (#793) X-Git-Tag: 0.12.0~18 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=c2eb0bd40f21b1c529c812c20e8aff0bf6af6f3b;p=thirdparty%2Fhttpx.git Fix simple typo: conncurrent -> concurrent (#793) Closes #792 --- diff --git a/tests/dispatch/test_connection_pools.py b/tests/dispatch/test_connection_pools.py index 78209585..55c16099 100644 --- a/tests/dispatch/test_connection_pools.py +++ b/tests/dispatch/test_connection_pools.py @@ -108,7 +108,7 @@ async def test_streaming_response_holds_connection(server): @pytest.mark.usefixtures("async_environment") async def test_multiple_concurrent_connections(server): """ - Multiple conncurrent requests should open multiple conncurrent connections. + Multiple concurrent requests should open multiple concurrent connections. """ async with ConnectionPool() as http: response_a = await http.request("GET", server.url)