From 159824ea935a9c74caae694d4b72aa9138cf32b8 Mon Sep 17 00:00:00 2001 From: "pre-commit-ci[bot]" <66853113+pre-commit-ci[bot]@users.noreply.github.com> Date: Sun, 9 Mar 2025 01:42:31 +0000 Subject: [PATCH] =?UTF-8?q?=F0=9F=8E=A8=20[pre-commit.ci]=20Auto=20format?= =?UTF-8?q?=20from=20pre-commit.com=20hooks?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- tests/test_forms_defaults.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/tests/test_forms_defaults.py b/tests/test_forms_defaults.py index d9876c6dc..8a4dfc89b 100644 --- a/tests/test_forms_defaults.py +++ b/tests/test_forms_defaults.py @@ -82,7 +82,6 @@ if PYDANTIC_V2: default_str: Annotated[str, Form(default="foo")] true_if_unset: Annotated[Optional[bool], Form(default=None)] - class SimpleForm(BaseModel): """https://github.com/fastapi/fastapi/pull/13464#issuecomment-2708378172""" @@ -200,7 +199,6 @@ if PYDANTIC_V2: async def json_annotated_form(value: AnnotatedFormModel) -> ResponseModel: return ResponseModel.from_value(value) - @app.post("/simple-form") def form_endpoint(model: Annotated[SimpleForm, Form()]) -> dict: """https://github.com/fastapi/fastapi/pull/13464#issuecomment-2708378172""" @@ -285,6 +283,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"""