diff options
author | Ned Batchelder <ned@nedbatchelder.com> | 2009-11-21 13:16:21 -0500 |
---|---|---|
committer | Ned Batchelder <ned@nedbatchelder.com> | 2009-11-21 13:16:21 -0500 |
commit | 73cef0218aba2909c7bf46a0ce7d1104d9a630d8 (patch) | |
tree | e8bb5e37fd716650cd71082d71f8f1bdb9fd6685 /test/test_templite.py | |
parent | b8c23d479ae5a0da883a59d433193533c7ef63e4 (diff) | |
download | python-coveragepy-git-73cef0218aba2909c7bf46a0ce7d1104d9a630d8.tar.gz |
Disable the two tests that don't work yet.
Diffstat (limited to 'test/test_templite.py')
-rw-r--r-- | test/test_templite.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/test_templite.py b/test/test_templite.py index f2c20f94..35c1df55 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): |