diff options
author | Ned Batchelder <ned@nedbatchelder.com> | 2016-01-01 13:39:29 -0500 |
---|---|---|
committer | Ned Batchelder <ned@nedbatchelder.com> | 2016-01-01 13:39:29 -0500 |
commit | c9464bbc696d393799c0989e4ca132987cc2fbb3 (patch) | |
tree | 9f4b21095f603e543a468b3d531fceed9f527836 /tests/test_arcs.py | |
parent | d6e221c8058259460cadfe62d5ca1bb0d93822cc (diff) | |
download | python-coveragepy-git-c9464bbc696d393799c0989e4ca132987cc2fbb3.tar.gz |
Remove temporary ast_differs
--HG--
branch : ast-branch
Diffstat (limited to 'tests/test_arcs.py')
-rw-r--r-- | tests/test_arcs.py | 4 |
1 files changed, 0 insertions, 4 deletions
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 ) |