(self)
| 132 | assert "ts" in d |
| 133 | |
| 134 | def test_immutable(self) -> None: |
| 135 | from pydantic import ValidationError |
| 136 | |
| 137 | msg = RegisterMessage() |
| 138 | with pytest.raises(ValidationError): |
| 139 | msg.instance_id = "new_id" # type: ignore |
| 140 | |
| 141 | |
| 142 | class TestRegisteredMessage: |
nothing calls this directly
no test coverage detected