diff options
-rw-r--r-- | test/test_arcs.py | 2 | ||||
-rw-r--r-- | test/test_parser.py | 2 | ||||
-rw-r--r-- | test/test_templite.py | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/test/test_arcs.py b/test/test_arcs.py index effc6e5..9b2c386 100644 --- a/test/test_arcs.py +++ b/test/test_arcs.py @@ -113,7 +113,7 @@ class SimpleArcTest(CoverageTest): arcz=".1 16 67 7. .2 23 24 3. 45 5.", arcz_missing="" ) - def test_dont_confuse_exit_and_else(self): + def XXX_dont_confuse_exit_and_else(self): self.check_coverage("""\ def foo(): if foo: diff --git a/test/test_parser.py b/test/test_parser.py index 7a9ff06..dc712b6 100644 --- a/test/test_parser.py +++ b/test/test_parser.py @@ -53,7 +53,7 @@ class ParserTest(CoverageTest): 1: 1, 2:1, 3:1, 4:1, 5:1, 6:1, 7:1, 8:1, 9:1 }) - def test_missing_branch_to_excluded_code(self): + def XXX_missing_branch_to_excluded_code(self): cp = self.parse_source("""\ if fooey: a = 2 diff --git a/test/test_templite.py b/test/test_templite.py index f2c20f9..35c1df5 100644 --- a/test/test_templite.py +++ b/test/test_templite.py @@ -195,7 +195,7 @@ class TempliteTest(unittest.TestCase): # TypeError: Couldn't evaluate {{ foo.bar.baz }}: # 'NoneType' object is unsubscriptable self.assertRaises(TypeError, self.try_render, - "Hey {{foo.bar.baz}} there", {'foo': None}, "Hey XXX there" + "Hey {{foo.bar.baz}} there", {'foo': None}, "Hey ??? there" ) def test_bogus_tag_syntax(self): |