]> git.ipfire.org Git - thirdparty/httpx.git/commitdiff
Fix simple typo: conncurrent -> concurrent (#793)
authorTim Gates <tim.gates@iress.com>
Sun, 26 Jan 2020 06:24:41 +0000 (17:24 +1100)
committerFlorimond Manca <florimond.manca@gmail.com>
Sun, 26 Jan 2020 06:24:41 +0000 (01:24 -0500)
Closes #792

tests/dispatch/test_connection_pools.py

index 78209585552208e14e3eafb232b9bca053cf0348..55c1609984e6ad9d8e79f77159a102a481c39e74 100644 (file)
@@ -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)