From b9c2452e9d99f42c04379477e252d222730ceb6d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sebasti=C3=A1n=20Ram=C3=ADrez?= Date: Tue, 2 Dec 2025 18:16:13 +0100 Subject: [PATCH] =?UTF-8?q?=E2=9C=85=20Update=20test=20comment?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- tests/test_wrapped_method_forward_reference.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/test_wrapped_method_forward_reference.py b/tests/test_wrapped_method_forward_reference.py index f01fe1474..7403f6002 100644 --- a/tests/test_wrapped_method_forward_reference.py +++ b/tests/test_wrapped_method_forward_reference.py @@ -17,8 +17,8 @@ def passthrough(f): def test_wrapped_method_type_inference(): """ Regression test ensuring that when a method imported from another module - is decorated with something that sets the __wrapped__ attribute, then - the types are still processed correctly, including dereferencing of forward + is decorated with something that sets the __wrapped__ attribute (functools.wraps), + then the types are still processed correctly, including dereferencing of forward references. """ app = FastAPI()