From bb7e02d7a3170ea71eef6392d82f9498bee93c9b Mon Sep 17 00:00:00 2001 From: Lukasz Lancucki Date: Fri, 10 Apr 2026 14:24:22 +0100 Subject: [PATCH] test(e2e): remove obsolete skip markers from chat message tests --- tests/e2e/helpdesk/chats/messages/test_async_messages.py | 2 -- tests/e2e/helpdesk/chats/messages/test_sync_messages.py | 2 -- 2 files changed, 4 deletions(-) diff --git a/tests/e2e/helpdesk/chats/messages/test_async_messages.py b/tests/e2e/helpdesk/chats/messages/test_async_messages.py index 97e241e8..500b3550 100644 --- a/tests/e2e/helpdesk/chats/messages/test_async_messages.py +++ b/tests/e2e/helpdesk/chats/messages/test_async_messages.py @@ -37,7 +37,6 @@ async def test_delete_chat_message(async_chat_messages_service, async_created_ch await async_chat_messages_service.delete(result.id) -@pytest.mark.skip(reason="Unskip after MPT-19964 completed") async def test_update_chat_message_not_found(async_chat_messages_service, invalid_chat_message_id): with pytest.raises(MPTAPIError) as error: await async_chat_messages_service.update( @@ -47,7 +46,6 @@ async def test_update_chat_message_not_found(async_chat_messages_service, invali assert error.value.status_code == HTTPStatus.NOT_FOUND -@pytest.mark.skip(reason="Unskip after MPT-19964 completed") async def test_delete_chat_message_not_found(async_chat_messages_service, invalid_chat_message_id): with pytest.raises(MPTAPIError) as error: await async_chat_messages_service.delete(invalid_chat_message_id) diff --git a/tests/e2e/helpdesk/chats/messages/test_sync_messages.py b/tests/e2e/helpdesk/chats/messages/test_sync_messages.py index ef27ec13..88db15a5 100644 --- a/tests/e2e/helpdesk/chats/messages/test_sync_messages.py +++ b/tests/e2e/helpdesk/chats/messages/test_sync_messages.py @@ -32,7 +32,6 @@ def test_delete_chat_message(chat_messages_service, created_chat_message): chat_messages_service.delete(result.id) -@pytest.mark.skip(reason="Unskip after MPT-19964 completed") def test_update_chat_message_not_found(chat_messages_service, invalid_chat_message_id): with pytest.raises(MPTAPIError) as error: chat_messages_service.update(invalid_chat_message_id, {"visibility": "Public"}) @@ -40,7 +39,6 @@ def test_update_chat_message_not_found(chat_messages_service, invalid_chat_messa assert error.value.status_code == HTTPStatus.NOT_FOUND -@pytest.mark.skip(reason="Unskip after MPT-19964 completed") def test_delete_chat_message_not_found(chat_messages_service, invalid_chat_message_id): with pytest.raises(MPTAPIError) as error: chat_messages_service.delete(invalid_chat_message_id)