Skip to content

Commit

Permalink
Update Lib/test/test_ast.py
Browse files Browse the repository at this point in the history
Co-authored-by: Irit Katriel <[email protected]>
  • Loading branch information
jeremyhylton and iritkatriel authored May 21, 2024
1 parent ed0cddd commit 2b114a9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Lib/test/test_ast.py
Original file line number Diff line number Diff line change
Expand Up @@ -1092,7 +1092,7 @@ def test_compare_modified_ast(self):
self.assertFalse(ast.compare(b, a))

b._fields = a._fields
b.spam = "Spam"
b.spam = a.spam
self.assertTrue(ast.compare(a, b))
self.assertTrue(ast.compare(b, a))

Expand Down

0 comments on commit 2b114a9

Please sign in to comment.