summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
Diffstat (limited to 'tests')
-rw-r--r--tests/plugin1.py5
-rw-r--r--tests/plugin2.py2
2 files changed, 2 insertions, 5 deletions
diff --git a/tests/plugin1.py b/tests/plugin1.py
index 5340e40d..af4dfc52 100644
--- a/tests/plugin1.py
+++ b/tests/plugin1.py
@@ -42,12 +42,9 @@ class FileTracer(coverage.FileTracer):
class FileReporter(coverage.FileReporter):
"""Dead-simple FileReporter."""
- def statements(self):
+ def lines(self):
return set([105, 106, 107, 205, 206, 207])
- def excluded_statements(self):
- return set([])
-
def coverage_init(reg, options): # pylint: disable=unused-argument
"""Called by coverage to initialize the plugins here."""
diff --git a/tests/plugin2.py b/tests/plugin2.py
index 226d4e55..3bdfbdfd 100644
--- a/tests/plugin2.py
+++ b/tests/plugin2.py
@@ -37,7 +37,7 @@ class RenderFileTracer(coverage.FileTracer):
class FileReporter(coverage.FileReporter):
"""A goofy file reporter."""
- def statements(self):
+ def lines(self):
# Goofy test arrangement: claim that the file has as many lines as the
# number in its name.
num = os.path.basename(self.filename).split(".")[0].split("_")[1]