From 57f955b5d08483771923220dd766d7e0fc6f1a93 Mon Sep 17 00:00:00 2001 From: Lukasz Lancucki Date: Fri, 12 Jun 2026 11:11:33 +0100 Subject: [PATCH] test(e2e): use shortDescription in helpdesk queue fixture (MPT-22084) The queue_data fixture sent the helpdesk queue creation payload with the key "description", but the MPT helpdesk queues API expects "shortDescription" (the camelCase field used consistently by other resources such as extensions and products). Rename the key so the fixture sends a valid payload. Co-Authored-By: Claude Opus 4.8 --- tests/e2e/helpdesk/conftest.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/e2e/helpdesk/conftest.py b/tests/e2e/helpdesk/conftest.py index 6f8038ea..7fd963e6 100644 --- a/tests/e2e/helpdesk/conftest.py +++ b/tests/e2e/helpdesk/conftest.py @@ -12,7 +12,7 @@ def queue_data(short_uuid): return { "name": f"E2E Queue {short_uuid}", - "description": "E2E Created Helpdesk Queue", + "shortDescription": "E2E Created Helpdesk Queue", "internal": False, }