diff --git a/tests/test_pytypes.py b/tests/test_pytypes.py index edf6e43d6..6d6fd717e 100644 --- a/tests/test_pytypes.py +++ b/tests/test_pytypes.py @@ -1136,8 +1136,9 @@ def test_class_attribute_types() -> None: m.Point.x = 1.0 assert m.Point.x == 1.0 + m.Point.x = 3.0 point = m.Point() - assert point.x == 1.0 + assert point.x == 3.0 point.dict_str_int["hi"] = 3 assert m.Point().dict_str_int == {"hi": 3}