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
4 changes: 2 additions & 2 deletions tests/e2e/helpdesk/chats/messages/test_async_messages.py
Original file line number Diff line number Diff line change
Expand Up @@ -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(
Expand All @@ -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)
Expand Down
4 changes: 2 additions & 2 deletions tests/e2e/helpdesk/chats/messages/test_sync_messages.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,15 +32,15 @@ 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"})

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