From b8cf77f52e01055e10276816cdb898fdac9ff29e Mon Sep 17 00:00:00 2001 From: Yurii Motov Date: Wed, 25 Feb 2026 21:12:12 +0100 Subject: [PATCH] Remove `xfail` (fixed by PR #14986) --- tests/test_tutorial/test_behind_a_proxy/test_tutorial005.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test_tutorial/test_behind_a_proxy/test_tutorial005.py b/tests/test_tutorial/test_behind_a_proxy/test_tutorial005.py index f9b659aed3..230d51c8fc 100644 --- a/tests/test_tutorial/test_behind_a_proxy/test_tutorial005.py +++ b/tests/test_tutorial/test_behind_a_proxy/test_tutorial005.py @@ -34,7 +34,7 @@ def test_forwarded_prefix_middleware( "prefix", [ "/api/v1", - pytest.param("/backend/v1", marks=pytest.mark.xfail), + "/backend/v1", ], ) def test_openapi_servers(prefix: str):