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
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,6 @@ async def test_delete_chat_attachment(async_chat_attachments_service, chat_attac
await async_chat_attachments_service.delete(created.id)


@pytest.mark.skip(reason="Unskip after MPT-19124 completed")
async def test_get_chat_attachment_not_found(
async_chat_attachments_service, invalid_chat_attachment_id
):
Expand All @@ -72,7 +71,6 @@ async def test_get_chat_attachment_not_found(
assert error.value.status_code == HTTPStatus.NOT_FOUND


@pytest.mark.skip(reason="Unskip after MPT-19124 completed")
async def test_update_chat_attachment_not_found(
async_chat_attachments_service, invalid_chat_attachment_id
):
Expand All @@ -84,7 +82,6 @@ async def test_update_chat_attachment_not_found(
assert error.value.status_code == HTTPStatus.NOT_FOUND


@pytest.mark.skip(reason="Unskip after MPT-19124 completed")
async def test_delete_chat_attachment_not_found(
async_chat_attachments_service, invalid_chat_attachment_id
):
Expand Down
3 changes: 0 additions & 3 deletions tests/e2e/helpdesk/chats/attachment/test_sync_attachment.py
Original file line number Diff line number Diff line change
Expand Up @@ -56,15 +56,13 @@ def test_delete_chat_attachment(chat_attachments_service, chat_attachment_data,
chat_attachments_service.delete(created.id)


@pytest.mark.skip(reason="Unskip after MPT-19124 completed")
def test_get_chat_attachment_not_found(chat_attachments_service, invalid_chat_attachment_id):
with pytest.raises(MPTAPIError) as error:
chat_attachments_service.get(invalid_chat_attachment_id)

assert error.value.status_code == HTTPStatus.NOT_FOUND


@pytest.mark.skip(reason="Unskip after MPT-19124 completed")
def test_update_chat_attachment_not_found(chat_attachments_service, invalid_chat_attachment_id):
with pytest.raises(MPTAPIError) as error:
chat_attachments_service.update(
Expand All @@ -75,7 +73,6 @@ def test_update_chat_attachment_not_found(chat_attachments_service, invalid_chat
assert error.value.status_code == HTTPStatus.NOT_FOUND


@pytest.mark.skip(reason="Unskip after MPT-19124 completed")
def test_delete_chat_attachment_not_found(chat_attachments_service, invalid_chat_attachment_id):
with pytest.raises(MPTAPIError) as error:
chat_attachments_service.delete(invalid_chat_attachment_id)
Expand Down
Loading