diff options
author | Ned Batchelder <ned@nedbatchelder.com> | 2015-07-27 20:56:57 -0400 |
---|---|---|
committer | Ned Batchelder <ned@nedbatchelder.com> | 2015-07-27 20:56:57 -0400 |
commit | ba704d02a40b8f8067c2624a8c7add9618f2e41d (patch) | |
tree | 9b6902b1d4007d8dfca22013f0d1fcfe6e08585d /tests/test_collector.py | |
parent | 7470fe559f2c1fa0c6c87365f115f27c6a4d6ff7 (diff) | |
download | python-coveragepy-git-ba704d02a40b8f8067c2624a8c7add9618f2e41d.tar.gz |
Use the new class name
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 3e254f3e..bd963415 100644 --- a/tests/test_collector.py +++ b/tests/test_collector.py @@ -38,7 +38,7 @@ class CollectorTest(CoverageTest): # Trace one file, but not the other. CheckUniqueFilenames will assert # that _should_trace hasn't been called twice for the same file. - cov = coverage.coverage(include=["f1.py"]) + cov = coverage.Coverage(include=["f1.py"]) should_trace_hook = CheckUniqueFilenames.hook(cov, '_should_trace') # Import the Python file, executing it. |