diff options
| -rw-r--r-- | Lib/test/test_ast.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/test_ast.py b/Lib/test/test_ast.py index f56a44a..273185c 100644 --- a/Lib/test/test_ast.py +++ b/Lib/test/test_ast.py @@ -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())]) |
