Commit f7b9f3b2 authored by Chris McDonough's avatar Chris McDonough

removed augmented assignment fixes, too many to fix right now.

parent 13ed6df5
......@@ -880,11 +880,11 @@ class MagicMethodTests(unittest.TestCase):
pass
object = PythonClass(1)
object = object + 1
object += 1
assert object.value == 2
object = self.fixup_inst(DerivedClass(1))
object = object + 1
object += 1
assert object.value == 2
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment