From 0d63ec7c4ba21d0892fa3e9a8d2e038d73e4c2ec Mon Sep 17 00:00:00 2001 From: Suren Khorenyan Date: Mon, 4 May 2026 14:29:06 +0300 Subject: [PATCH] test: minor test update --- .../test_query_plus_body_tutorial001.py | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/tests/docs_src/body_depends_model_merge_query_plus_body/test_query_plus_body_tutorial001.py b/tests/docs_src/body_depends_model_merge_query_plus_body/test_query_plus_body_tutorial001.py index 21d1f39993..36f4f171b3 100644 --- a/tests/docs_src/body_depends_model_merge_query_plus_body/test_query_plus_body_tutorial001.py +++ b/tests/docs_src/body_depends_model_merge_query_plus_body/test_query_plus_body_tutorial001.py @@ -16,18 +16,19 @@ def client(): @pytest.mark.parametrize( ("path", "query", "json_body"), [ - ( + pytest.param( "/clients/case-files/", {"client_id": "rick", "region": "west"}, {"title": "Q1", "case_number": "C-9"}, + id="case_file", ), - ( + pytest.param( "/clients/contracts/", {"client_id": "morty", "contract_ref": "R-9"}, {"title": "Partner deal", "contract_id": "Z-1"}, + id="contract", ), ], - ids=["case_file", "contract"], ) def test_query_plus_merged_json_body(client, path, query, json_body): response = client.post(path, params=query, json=json_body)