From: Mark Dickinson Date: Mon, 28 Jun 2010 19:34:15 +0000 (+0000) Subject: Fix typo in test_unparse.py. X-Git-Tag: v2.7~42 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=b83a1ff76b3563e6c86d449ddcddf4f5a70e8a51;p=thirdparty%2FPython%2Fcpython.git Fix typo in test_unparse.py. --- diff --git a/Demo/parser/test_unparse.py b/Demo/parser/test_unparse.py index bf68c1ac550f..4f3a28e52b27 100644 --- a/Demo/parser/test_unparse.py +++ b/Demo/parser/test_unparse.py @@ -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")