From 7de2840508fee33ea1b0070b7eee78056ad08cfa Mon Sep 17 00:00:00 2001 From: Serhiy Storchaka Date: Mon, 27 Jun 2016 23:40:43 +0300 Subject: Issue #27352: Fixed an error message in a test. --- Lib/test/test_ast.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Lib/test/test_ast.py b/Lib/test/test_ast.py index 7b43be6..e032f6d 100644 --- a/Lib/test/test_ast.py +++ b/Lib/test/test_ast.py @@ -754,7 +754,7 @@ class ASTValidatorTests(unittest.TestCase): def test_importfrom(self): imp = ast.ImportFrom(None, [ast.alias("x", None)], -42) - self.stmt(imp, "level less than -1") + self.stmt(imp, "Negative ImportFrom level") self.stmt(ast.ImportFrom(None, [], 0), "empty names on ImportFrom") def test_global(self): -- cgit v0.12