From f547473d9f73420f89838071e3714fdc98eab0ed Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sebasti=C3=A1n=20Ram=C3=ADrez?= Date: Sat, 11 Oct 2025 01:27:18 +0200 Subject: [PATCH] =?UTF-8?q?=E2=9C=85=20Update=20tests=20with=20new=20locat?= =?UTF-8?q?ion?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- tests/test_compat_params_v1.py | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/tests/test_compat_params_v1.py b/tests/test_compat_params_v1.py index d73af5ddc..7064761cb 100644 --- a/tests/test_compat_params_v1.py +++ b/tests/test_compat_params_v1.py @@ -9,8 +9,16 @@ if sys.version_info >= (3, 14): skip_module_if_py_gte_314() from fastapi import FastAPI -from fastapi._compat._params_v1 import Body, Cookie, File, Form, Header, Path, Query from fastapi._compat.v1 import BaseModel +from fastapi.temp_pydantic_v1_params import ( + Body, + Cookie, + File, + Form, + Header, + Path, + Query, +) from fastapi.testclient import TestClient from inline_snapshot import snapshot from typing_extensions import Annotated