From 09fae5ee0a58b8464c5f979b48b9a427b0d6ff6d Mon Sep 17 00:00:00 2001 From: Lukasz Lancucki Date: Fri, 12 Jun 2026 14:37:08 +0100 Subject: [PATCH] test(e2e): also send description in helpdesk queue fixture (MPT-22084) The MPT helpdesk Queue schema defines both "description" and "shortDescription" as valid fields (per the public OpenAPI spec). The previous fix renamed "description" to "shortDescription" and dropped coverage of the still-valid "description" field. Send both so the queue_data fixture exercises the complete payload. Co-Authored-By: Claude Opus 4.8 --- tests/e2e/helpdesk/conftest.py | 1 + 1 file changed, 1 insertion(+) diff --git a/tests/e2e/helpdesk/conftest.py b/tests/e2e/helpdesk/conftest.py index 7fd963e6..ed4aa1c0 100644 --- a/tests/e2e/helpdesk/conftest.py +++ b/tests/e2e/helpdesk/conftest.py @@ -13,6 +13,7 @@ def queue_data(short_uuid): return { "name": f"E2E Queue {short_uuid}", "shortDescription": "E2E Created Helpdesk Queue", + "description": "E2E Created Helpdesk Queue", "internal": False, }