We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c7eb804 commit 2a26746Copy full SHA for 2a26746
tests/test_fhirabstractmodel.py
@@ -79,7 +79,7 @@ def get_required_fields(self) -> typing.List[typing.Tuple[str, str]]:
79
with pytest.raises(ValidationError) as exception_info:
80
MyPrimitivesValueFieldsModel(postCode=1230, active=True, meta={"id": "001"})
81
82
- assert "None value is not allowed" in str(exception_info.value)
+ assert "Value for the field 'name' is required" in str(exception_info.value)
83
84
# test with extension
85
obj = MyPrimitivesValueFieldsModel(
0 commit comments