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
1 changed files with 1 additions and 1 deletions

View File

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