fix indentation

This commit is contained in:
Benjamin Peterson 2011-08-09 16:17:12 -05:00
parent e451ec393f
commit 71ce8970cf
1 changed files with 1 additions and 1 deletions

View File

@ -738,7 +738,7 @@ class ASTValidatorTests(unittest.TestCase):
l = ast.Name("x", ast.Load())
s = ast.Name("y", ast.Store())
for args in (s, l, l), (l, s, l), (l, l, s):
self.expr(ast.IfExp(*args), "must have Load context")
self.expr(ast.IfExp(*args), "must have Load context")
def test_dict(self):
d = ast.Dict([], [ast.Name("x", ast.Load())])