From 19d05c1531666119006770474953acb8ca46747f Mon Sep 17 00:00:00 2001 From: Yurii Motov Date: Mon, 9 Feb 2026 17:15:10 +0100 Subject: [PATCH] Introduce error to test CI fails --- tests/test_request_params/test_path/test_required_str.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test_request_params/test_path/test_required_str.py b/tests/test_request_params/test_path/test_required_str.py index aecc2eb6c..8503c63a4 100644 --- a/tests/test_request_params/test_path/test_required_str.py +++ b/tests/test_request_params/test_path/test_required_str.py @@ -59,7 +59,7 @@ def test_schema(path: str, expected_name: str, expected_title: str): { "required": True, "schema": {"title": Is(expected_title), "type": "string"}, - "name": Is(expected_name), + "name": expected_name, "in": "path", } ]