Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions Lib/test/test_ast/test_ast.py
Original file line number Diff line number Diff line change
Expand Up @@ -548,7 +548,7 @@ def test_compare_basics(self):
)

def test_compare_modified_ast(self):
# The ast API is a bit underspecified. The objects are mutable,
# The ast API is a bit under-specified. The objects are mutable,
# and even _fields and _attributes are mutable. The compare() does
# some simple things to accommodate mutability.
a = ast.parse("m * x + b", mode="eval")
Expand Down Expand Up @@ -3545,7 +3545,7 @@ def test_show_empty_flag(self):
self.check_output(source, expect, '--show-empty')


class ASTOptimiziationTests(unittest.TestCase):
class ASTOptimizationTests(unittest.TestCase):
def wrap_expr(self, expr):
return ast.Module(body=[ast.Expr(value=expr)])

Expand Down
Loading