From bd3a77500833877293f089396497b4f9a83b9629 Mon Sep 17 00:00:00 2001 From: Lukasz Lancucki Date: Mon, 30 Mar 2026 09:25:29 +0100 Subject: [PATCH] test(helpdesk): unskip async and sync chat link not found tests --- tests/e2e/helpdesk/chats/links/test_async_links.py | 2 -- tests/e2e/helpdesk/chats/links/test_sync_links.py | 2 -- 2 files changed, 4 deletions(-) diff --git a/tests/e2e/helpdesk/chats/links/test_async_links.py b/tests/e2e/helpdesk/chats/links/test_async_links.py index 4060ac9e..ab5e7f21 100644 --- a/tests/e2e/helpdesk/chats/links/test_async_links.py +++ b/tests/e2e/helpdesk/chats/links/test_async_links.py @@ -42,7 +42,6 @@ async def test_delete_chat_link(async_chat_links_service, async_created_chat_lin await async_chat_links_service.delete(result.id) -@pytest.mark.skip(reason="Unskip after MPT-19124 completed") async def test_update_chat_link_not_found(async_chat_links_service, invalid_chat_link_id): with pytest.raises(MPTAPIError) as error: await async_chat_links_service.update( @@ -52,7 +51,6 @@ async def test_update_chat_link_not_found(async_chat_links_service, invalid_chat assert error.value.status_code == HTTPStatus.NOT_FOUND -@pytest.mark.skip(reason="Unskip after MPT-19124 completed") async def test_delete_chat_link_not_found(async_chat_links_service, invalid_chat_link_id): with pytest.raises(MPTAPIError) as error: await async_chat_links_service.delete(invalid_chat_link_id) diff --git a/tests/e2e/helpdesk/chats/links/test_sync_links.py b/tests/e2e/helpdesk/chats/links/test_sync_links.py index 34769635..c9195c2c 100644 --- a/tests/e2e/helpdesk/chats/links/test_sync_links.py +++ b/tests/e2e/helpdesk/chats/links/test_sync_links.py @@ -39,7 +39,6 @@ def test_delete_chat_link(chat_links_service, created_chat_link): chat_links_service.delete(result.id) -@pytest.mark.skip(reason="Unskip after MPT-19124 completed") def test_update_chat_link_not_found(chat_links_service, invalid_chat_link_id): with pytest.raises(MPTAPIError) as error: chat_links_service.update(invalid_chat_link_id, {"name": "updated name"}) @@ -47,7 +46,6 @@ def test_update_chat_link_not_found(chat_links_service, invalid_chat_link_id): assert error.value.status_code == HTTPStatus.NOT_FOUND -@pytest.mark.skip(reason="Unskip after MPT-19124 completed") def test_delete_chat_link_not_found(chat_links_service, invalid_chat_link_id): with pytest.raises(MPTAPIError) as error: chat_links_service.delete(invalid_chat_link_id)