From cd8ab84eee0569a31bb7f2f967eb80deb32eb590 Mon Sep 17 00:00:00 2001 From: Ned Batchelder Date: Sun, 6 Feb 2022 08:35:53 -0500 Subject: doc, test: clean up from 'better tracing of pytracer changed' Commit d35e8c4624bd074c4e55a8e8a33c343f734299db changed the message, but the docs and tests weren't updated. --- tests/test_oddball.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'tests/test_oddball.py') diff --git a/tests/test_oddball.py b/tests/test_oddball.py index 9536c121..703e8187 100644 --- a/tests/test_oddball.py +++ b/tests/test_oddball.py @@ -83,7 +83,7 @@ class RecursionTest(CoverageTest): def test_long_recursion(self): # We can't finish a very deep recursion, but we don't crash. with pytest.raises(RuntimeError): - with swallow_warnings("Trace function changed, measurement is likely wrong: None"): + with swallow_warnings("Trace function changed, data is likely wrong: None"): self.check_coverage("""\ def recur(n): if n == 0: @@ -120,7 +120,7 @@ class RecursionTest(CoverageTest): """) cov = coverage.Coverage() - with swallow_warnings("Trace function changed, measurement is likely wrong: None"): + with swallow_warnings("Trace function changed, data is likely wrong: None"): self.start_import_stop(cov, "recur") pytrace = (cov._collector.tracer_name() == "PyTracer") -- cgit v1.2.1