`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`.