summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTim Gates <tim.gates@iress.com>2020-03-01 22:44:15 +1100
committerGitHub <noreply@github.com>2020-03-01 22:44:15 +1100
commitd8931173ea05e5ac17fc43c68b5f1d6086f15bb5 (patch)
treea2792292860663223db8ee3d31e7029380e12e38
parent500cccf7b32af4ef65fe5da8eab8d5206cb0fdac (diff)
downloadwaitress-d8931173ea05e5ac17fc43c68b5f1d6086f15bb5.tar.gz
Update test_wasyncore.py
-rw-r--r--waitress/tests/test_wasyncore.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/waitress/tests/test_wasyncore.py b/waitress/tests/test_wasyncore.py
index 42cd306..9c23509 100644
--- a/waitress/tests/test_wasyncore.py
+++ b/waitress/tests/test_wasyncore.py
@@ -125,7 +125,7 @@ def gc_collect(): # pragma: no cover
In non-CPython implementations of Python, this is needed because timely
deallocation is not guaranteed by the garbage collector. (Even in CPython
this can be the case in case of reference cycles.) This means that __del__
- methods may be called later than expected and weakref may remain alive for
+ methods may be called later than expected and weakrefs may remain alive for
longer than expected. This function tries its best to force all garbage
objects to disappear.
"""