summaryrefslogtreecommitdiff
path: root/tests/test_arcs.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/test_arcs.py')
-rw-r--r--tests/test_arcs.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/test_arcs.py b/tests/test_arcs.py
index c0cbac7c..63120616 100644
--- a/tests/test_arcs.py
+++ b/tests/test_arcs.py
@@ -760,6 +760,6 @@ class LineDataTest(CoverageTest):
self.start_import_stop(cov, "fun1")
- cov._harvest_data()
- fun1_lines = cov.data.line_data()[abs_file("fun1.py")]
+ data = cov.get_data()
+ fun1_lines = data.line_data()[abs_file("fun1.py")]
self.assertEqual(fun1_lines, [1, 2, 5])