summaryrefslogtreecommitdiff
path: root/tests/test_data.py
diff options
context:
space:
mode:
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 a20a7db..4999f25 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")