Browse Source

pydantic v1 compat

pull/13464/head
sneakers-the-rat 4 weeks ago
parent
commit
e76184380d
No known key found for this signature in database GPG Key ID: 6DCB96EF1E4D232D
  1. 4
      tests/test_forms_defaults.py

4
tests/test_forms_defaults.py

@ -7,6 +7,8 @@ from pydantic import BaseModel, Field
from starlette.testclient import TestClient
from typing_extensions import Annotated
from .utils import needs_pydanticv2
if PYDANTIC_V2:
from pydantic import model_validator
else:
@ -283,7 +285,7 @@ def test_no_prefill_defaults_partially_set(encoding, model_type, client):
assert "default_zero" not in dumped_exclude_default
assert "default_zero" not in response_model.dumped_fields_exclude_default
@needs_pydanticv2
def test_casted_empty_defaults(client: TestClient):
"""https://github.com/fastapi/fastapi/pull/13464#issuecomment-2708378172"""
form_content = {"foo": "", "with": ""}

Loading…
Cancel
Save