summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--tests/coveragetest.py1
-rw-r--r--tests/test_arcs.py4
2 files changed, 0 insertions, 5 deletions
diff --git a/tests/coveragetest.py b/tests/coveragetest.py
index 5f85e75c..3468b794 100644
--- a/tests/coveragetest.py
+++ b/tests/coveragetest.py
@@ -165,7 +165,6 @@ class CoverageTest(
excludes=None, partials="",
arcz=None, arcz_missing=None, arcz_unpredicted=None,
arcs=None, arcs_missing=None, arcs_unpredicted=None,
- ast_differs=False,
):
"""Check the coverage measurement of `text`.
diff --git a/tests/test_arcs.py b/tests/test_arcs.py
index ea79d495..a64ab89e 100644
--- a/tests/test_arcs.py
+++ b/tests/test_arcs.py
@@ -407,7 +407,6 @@ class ExceptionArcTest(CoverageTest):
""",
arcz=".1 12 23 34 46 58 67 78 8.",
arcz_missing="58",
- ast_differs=True,
)
def test_hidden_raise(self):
@@ -426,7 +425,6 @@ class ExceptionArcTest(CoverageTest):
""",
arcz=".1 12 .3 34 3-2 4-2 25 56 67 78 8B 9A AB B.",
arcz_missing="3-2 78 8B", arcz_unpredicted="79",
- ast_differs=True,
)
def test_except_with_type(self):
@@ -507,7 +505,6 @@ class ExceptionArcTest(CoverageTest):
""",
arcz=".1 12 23 34 3D 45 56 67 68 7A 8A A3 AB BC CD D.",
arcz_missing="3D",
- ast_differs=True,
)
self.check_coverage("""\
a, c, d, i = 1, 1, 1, 99
@@ -676,7 +673,6 @@ class ExceptionArcTest(CoverageTest):
arcz=".1 12 23 34 4A 56 6A 78 8A AD BC CD D.",
arcz_missing="4A 56 6A 78 8A AD",
arcz_unpredicted="45 57 7A AB",
- ast_differs=True, # TODO: get rid of all ast_differs
)