summaryrefslogtreecommitdiff
path: root/tests/test_data.py
diff options
context:
space:
mode:
authorNed Batchelder <ned@nedbatchelder.com>2015-07-21 09:29:39 -0400
committerNed Batchelder <ned@nedbatchelder.com>2015-07-21 09:29:39 -0400
commitea9e81b1f5459e7b9155a40215251ed24140f8a8 (patch)
treec13c19caa553afaaa06ea05b789beefb4100962d /tests/test_data.py
parent93611687132bc7e151046a98abe82a73cff9a795 (diff)
downloadpython-coveragepy-git-ea9e81b1f5459e7b9155a40215251ed24140f8a8.tar.gz
Remove CoverageData(collector=), we'll do it differently soon.
Diffstat (limited to 'tests/test_data.py')
-rw-r--r--tests/test_data.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/test_data.py b/tests/test_data.py
index a20a7db1..4999f25f 100644
--- a/tests/test_data.py
+++ b/tests/test_data.py
@@ -319,7 +319,7 @@ class CoverageDataTestInTempDir(DataTestHelpers, CoverageTest):
"""Tests of CoverageData that need a temp dir to make files."""
def test_read_write_lines(self):
- covdata1 = CoverageData(collector="coverage tests")
+ covdata1 = CoverageData()
covdata1.add_lines(LINES_1)
covdata1.write_file("lines.dat")
@@ -330,7 +330,7 @@ class CoverageDataTestInTempDir(DataTestHelpers, CoverageTest):
self.assertCountEqual(covdata2.lines("a.py"), A_PY_LINES_1)
def test_read_write_arcs(self):
- covdata1 = CoverageData(collector="coverage tests")
+ covdata1 = CoverageData()
covdata1.add_arcs(ARCS_3)
covdata1.write_file("arcs.dat")