|
|
@ -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", |
|
|
|
} |
|
|
|
) |
|
|
|
] |
|
|
|
} |
|
|
|
) |
|
|
|