summaryrefslogtreecommitdiff
path: root/tests/test_context.py
diff options
context:
space:
mode:
authorChristian Clauss <cclauss@me.com>2021-08-01 12:52:42 +0200
committerGitHub <noreply@github.com>2021-08-01 03:52:42 -0700
commitf3059761830a0716504b04d25a4045c2f4ef4402 (patch)
tree8071ee5c84f35bc7a6238824cacfb44edffc3339 /tests/test_context.py
parent7fe106b9fef26478ba10a6f206baf70eee201d4a (diff)
downloadpython-coveragepy-git-f3059761830a0716504b04d25a4045c2f4ef4402.tar.gz
style: fix typos discovered by codespell (#1197)
python3 -m pip install codespell codespell --ignore-words-list="ba,cant,datas,hart,linke,ned,nin,overthere,upto" --skip="*.js" * Fix typos discovered by codespell * datas * intgers ==> integers
Diffstat (limited to 'tests/test_context.py')
-rw-r--r--tests/test_context.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/test_context.py b/tests/test_context.py
index b20ecdef..3f80803b 100644
--- a/tests/test_context.py
+++ b/tests/test_context.py
@@ -197,7 +197,7 @@ def get_qualname():
"""Helper to return qualname_from_frame for the caller."""
stack = inspect.stack()[1:]
if any(sinfo[0].f_code.co_name == "get_qualname" for sinfo in stack):
- # We're calling outselves recursively, maybe because we're testing
+ # We're calling ourselves recursively, maybe because we're testing
# properties. Return an int to try to get back on track.
return 17
caller_frame = stack[0][0]