Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 0 additions & 2 deletions tests/e2e/helpdesk/chats/links/test_async_links.py
Original file line number Diff line number Diff line change
Expand Up @@ -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(
Expand All @@ -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)
Expand Down
2 changes: 0 additions & 2 deletions tests/e2e/helpdesk/chats/links/test_sync_links.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,15 +39,13 @@ 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"})

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)
Expand Down
Loading