diff options
author | Ned Batchelder <ned@nedbatchelder.com> | 2023-01-02 22:03:59 -0500 |
---|---|---|
committer | Ned Batchelder <ned@nedbatchelder.com> | 2023-01-02 22:03:59 -0500 |
commit | 0b05b45e342813b34d906e840e253a06b37133ae (patch) | |
tree | ff38df2bfdc0faed5d1cd0d1fc42630c9e487192 /tests/test_collector.py | |
parent | 2090f79d4a0447f4d3744ea957fcebd951f0b843 (diff) | |
download | python-coveragepy-git-0b05b45e342813b34d906e840e253a06b37133ae.tar.gz |
mypy: test_annotate.py test_arcs.py test_collector.py
Diffstat (limited to 'tests/test_collector.py')
-rw-r--r-- | tests/test_collector.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/test_collector.py b/tests/test_collector.py index 53d7f175..0d0c8dfe 100644 --- a/tests/test_collector.py +++ b/tests/test_collector.py @@ -14,7 +14,7 @@ from tests.helpers import CheckUniqueFilenames class CollectorTest(CoverageTest): """Test specific aspects of the collection process.""" - def test_should_trace_cache(self): + def test_should_trace_cache(self) -> None: # The tracers should only invoke should_trace once for each file name. # Make some files that invoke each other. |