summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorRan Benita <ran@unusedvar.com>2020-11-25 12:29:34 +0200
committerGitHub <noreply@github.com>2020-11-25 12:29:34 +0200
commit70823da7ed68a3fc2f9e562407fab212e35b2d2b (patch)
tree62d90ca5f9853fc0545e2bac60e029bdc3ba38fb /src
parentd27806295a3a7249839491e82d0b87bdfbf37383 (diff)
parentb3108723007e32fcb650a2ade8c697f12fd3f716 (diff)
downloadpytest-70823da7ed68a3fc2f9e562407fab212e35b2d2b.tar.gz
Merge pull request #8064 from symonk/fix-typo-in-mock-timing
fix mock_timing fixture name (typo) in timing.py
Diffstat (limited to 'src')
-rw-r--r--src/_pytest/timing.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/_pytest/timing.py b/src/_pytest/timing.py
index 62442de75..925163a58 100644
--- a/src/_pytest/timing.py
+++ b/src/_pytest/timing.py
@@ -3,7 +3,7 @@
We intentionally grab some "time" functions internally to avoid tests mocking "time" to affect
pytest runtime information (issue #185).
-Fixture "mock_timinig" also interacts with this module for pytest's own tests.
+Fixture "mock_timing" also interacts with this module for pytest's own tests.
"""
from time import perf_counter
from time import sleep