summaryrefslogtreecommitdiff
path: root/tests/asgi
diff options
context:
space:
mode:
authorLiyang Zhang <sudo.liyang@gmail.com>2023-03-20 02:07:23 -0500
committerGitHub <noreply@github.com>2023-03-20 08:07:23 +0100
commitf9f9215d3e5500d9a8d0bec0936480ba34d42e88 (patch)
treed5b1b014c7dd155ea466275cb37d906151d3ae13 /tests/asgi
parentb295b311712b598c053f7fa8cf6e6882217e35d9 (diff)
Fixed some typos in comments, docstrings, and tests.
Diffstat (limited to 'tests/asgi')
-rw-r--r--tests/asgi/tests.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/asgi/tests.py b/tests/asgi/tests.py
index 61d040b45b..824f396e00 100644
--- a/tests/asgi/tests.py
+++ b/tests/asgi/tests.py
@@ -61,7 +61,7 @@ class ASGITest(SimpleTestCase):
# Python's file API is not async compatible. A third-party library such
# as https://github.com/Tinche/aiofiles allows passing the file to
- # FileResponse as an async interator. With a sync iterator
+ # FileResponse as an async iterator. With a sync iterator
# StreamingHTTPResponse triggers a warning when iterating the file.
# assertWarnsMessage is not async compatible, so ignore_warnings for the
# test.