[3.13] Fix typo in Lib/test/test_ast/test_ast.py (GH-136767) (#137356)

`ASTOptimiziationTests` -> `ASTOptimizationTests`
(cherry picked from commit 60146f4f6f)

Co-authored-by: Hunter Hogan <hunterhogan@users.noreply.github.com>
This commit is contained in:
Brian Schubert 2025-08-04 01:56:07 -04:00 committed by GitHub
parent 1ba09b2f04
commit a2c749d806
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -3236,7 +3236,7 @@ def test_cli_file_input(self):
def compare(left, right):
return ast.dump(left) == ast.dump(right)
class ASTOptimiziationTests(unittest.TestCase):
class ASTOptimizationTests(unittest.TestCase):
binop = {
"+": ast.Add(),
"-": ast.Sub(),