Fix typo in test_unparse.py.

This commit is contained in:
Mark Dickinson 2010-06-28 19:34:15 +00:00
parent 623b979553
commit b83a1ff76b

View file

@ -46,7 +46,7 @@ class UnparseTestCase(unittest.TestCase):
self.check_roundtrip(forelse) self.check_roundtrip(forelse)
def test_while_else(self): def test_while_else(self):
self.check_roundtrip(forelse) self.check_roundtrip(whileelse)
def test_unary_parens(self): def test_unary_parens(self):
self.check_roundtrip("(-1)**7") self.check_roundtrip("(-1)**7")