Browse Source

Fix test for OpenAPI with support for Pydantic v1

pull/13515/head
Sebastián Ramírez 2 months ago
parent
commit
ac4ee52959
  1. 10
      tests/test_tutorial/test_header_param_models/test_tutorial003.py

10
tests/test_tutorial/test_header_param_models/test_tutorial003.py

@ -62,6 +62,7 @@ def test_header_param_model_no_underscore(client: TestClient):
assert response.json() == snapshot(
{
"detail": [
IsDict(
{
"type": "missing",
"loc": ["header", "save_data"],
@ -79,6 +80,15 @@ def test_header_param_model_no_underscore(client: TestClient):
"x-tag": "two",
},
}
)
| IsDict(
# TODO: remove when deprecating Pydantic v1
{
"type": "value_error.missing",
"loc": ["header", "save_data"],
"msg": "field required",
}
)
]
}
)

Loading…
Cancel
Save