From bf16db9ee88061acb2921ffee7587158052f8def Mon Sep 17 00:00:00 2001 From: Lukasz Lancucki Date: Thu, 2 Apr 2026 11:10:06 +0100 Subject: [PATCH] test(helpdesk): unskip chat message tests by removing skip markers --- tests/e2e/helpdesk/chats/messages/test_async_messages.py | 5 +---- tests/e2e/helpdesk/chats/messages/test_sync_messages.py | 5 +---- 2 files changed, 2 insertions(+), 8 deletions(-) diff --git a/tests/e2e/helpdesk/chats/messages/test_async_messages.py b/tests/e2e/helpdesk/chats/messages/test_async_messages.py index af348d23..c113b453 100644 --- a/tests/e2e/helpdesk/chats/messages/test_async_messages.py +++ b/tests/e2e/helpdesk/chats/messages/test_async_messages.py @@ -15,13 +15,11 @@ async def test_list_chat_messages(async_chat_messages_service): assert all(isinstance(message, ChatMessage) for message in result) -@pytest.mark.skip(reason="Unskip after MPT-19124 completed") # noqa: AAA01 -def test_create_chat_message(async_created_chat_message, chat_message_data): +def test_create_chat_message(async_created_chat_message, chat_message_data): # noqa: AAA01 assert async_created_chat_message.id is not None assert async_created_chat_message.to_dict().get("content") == chat_message_data["content"] -@pytest.mark.skip(reason="Unskip after MPT-19124 completed") async def test_update_chat_message_visibility( async_chat_messages_service, async_created_chat_message ): @@ -33,7 +31,6 @@ async def test_update_chat_message_visibility( assert result.id == async_created_chat_message.id -@pytest.mark.skip(reason="Unskip after MPT-19124 completed") async def test_delete_chat_message(async_chat_messages_service, async_created_chat_message): result = async_created_chat_message diff --git a/tests/e2e/helpdesk/chats/messages/test_sync_messages.py b/tests/e2e/helpdesk/chats/messages/test_sync_messages.py index 78ba7904..fd878201 100644 --- a/tests/e2e/helpdesk/chats/messages/test_sync_messages.py +++ b/tests/e2e/helpdesk/chats/messages/test_sync_messages.py @@ -15,20 +15,17 @@ def test_list_chat_messages(chat_messages_service): assert all(isinstance(message, ChatMessage) for message in result) -@pytest.mark.skip(reason="Unskip after MPT-19124 completed") # noqa: AAA01 -def test_create_chat_message(created_chat_message, chat_message_data): +def test_create_chat_message(created_chat_message, chat_message_data): # noqa: AAA01 assert created_chat_message.id is not None assert created_chat_message.to_dict().get("content") == chat_message_data["content"] -@pytest.mark.skip(reason="Unskip after MPT-19124 completed") def test_update_chat_message_visibility(chat_messages_service, created_chat_message): result = chat_messages_service.update(created_chat_message.id, {"visibility": "Public"}) assert result.id == created_chat_message.id -@pytest.mark.skip(reason="Unskip after MPT-19124 completed") def test_delete_chat_message(chat_messages_service, created_chat_message): result = created_chat_message