diff --git a/tests/e2e/helpdesk/chats/messages/test_async_messages.py b/tests/e2e/helpdesk/chats/messages/test_async_messages.py index cc9dd452..97e241e8 100644 --- a/tests/e2e/helpdesk/chats/messages/test_async_messages.py +++ b/tests/e2e/helpdesk/chats/messages/test_async_messages.py @@ -37,7 +37,7 @@ 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-19124 completed") +@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 +47,7 @@ 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-19124 completed") +@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 813147c1..ef27ec13 100644 --- a/tests/e2e/helpdesk/chats/messages/test_sync_messages.py +++ b/tests/e2e/helpdesk/chats/messages/test_sync_messages.py @@ -32,7 +32,7 @@ def test_delete_chat_message(chat_messages_service, created_chat_message): chat_messages_service.delete(result.id) -@pytest.mark.skip(reason="Unskip after MPT-19124 completed") +@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 +40,7 @@ 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-19124 completed") +@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)