From b3108723007e32fcb650a2ade8c697f12fd3f716 Mon Sep 17 00:00:00 2001 From: Simon K Date: Mon, 23 Nov 2020 20:45:12 +0000 Subject: [PATCH] fix mock_timing fixture name (typo) in timing.py --- src/_pytest/timing.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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