`test_var.py` is trying to assign a value to `v.address`, but the Variable implementation only has a getter. Consequently, these lines fail: ```python v.address = "1" assert v.address == "1" ``` Also, it will be more consistent to use an `int` here rather than `str`.
test_var.pyis trying to assign a value tov.address, but the Variable implementation only has a getter. Consequently, these lines fail:Also, it will be more consistent to use an
inthere rather thanstr.