Skip to content

Commit a91e2bc

Browse files
[3.14] Fix typo in Lib/test/test_ast/test_ast.py (GH-136767) (#136783)
Fix typo in `Lib/test/test_ast/test_ast.py` (GH-136767) `ASTOptimiziationTests` -> `ASTOptimizationTests` (cherry picked from commit 60146f4) Co-authored-by: Hunter Hogan <[email protected]>
1 parent ba6ea7c commit a91e2bc

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Lib/test/test_ast/test_ast.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3547,7 +3547,7 @@ def test_show_empty_flag(self):
35473547
self.check_output(source, expect, '--show-empty')
35483548

35493549

3550-
class ASTOptimiziationTests(unittest.TestCase):
3550+
class ASTOptimizationTests(unittest.TestCase):
35513551
def wrap_expr(self, expr):
35523552
return ast.Module(body=[ast.Expr(value=expr)])
35533553

0 commit comments

Comments
 (0)