From e68db31c27f208996008cf56bbf4c248925f3c8b Mon Sep 17 00:00:00 2001 From: Lukasz Lancucki Date: Wed, 8 Apr 2026 17:07:14 +0100 Subject: [PATCH] test(helpdesk): update skip reasons in participant tests --- .../helpdesk/chats/participants/test_async_participants.py | 6 +++--- .../helpdesk/chats/participants/test_sync_participants.py | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/tests/e2e/helpdesk/chats/participants/test_async_participants.py b/tests/e2e/helpdesk/chats/participants/test_async_participants.py index c3b43fd0..530fb868 100644 --- a/tests/e2e/helpdesk/chats/participants/test_async_participants.py +++ b/tests/e2e/helpdesk/chats/participants/test_async_participants.py @@ -15,12 +15,12 @@ async def test_list_chat_participants(async_chat_participants_service): assert all(isinstance(participant, ChatParticipant) for participant in result) -@pytest.mark.skip(reason="Unskip after MPT-19124 completed") # noqa: AAA01 +@pytest.mark.skip(reason="Unskip after MPT-20015 completed") # noqa: AAA01 def test_create_chat_participant(async_created_chat_participant): assert isinstance(async_created_chat_participant, ChatParticipant) -@pytest.mark.skip(reason="Unskip after MPT-19124 completed") +@pytest.mark.skip(reason="Unskip after MPT-20015 completed") async def test_update_chat_participant( async_chat_participants_service, async_created_chat_participant ): @@ -32,7 +32,7 @@ async def test_update_chat_participant( assert isinstance(result, ChatParticipant) -@pytest.mark.skip(reason="Unskip after MPT-19124 completed") +@pytest.mark.skip(reason="Unskip after MPT-20015 completed") async def test_delete_chat_participant( async_chat_participants_service, async_created_chat_participant ): diff --git a/tests/e2e/helpdesk/chats/participants/test_sync_participants.py b/tests/e2e/helpdesk/chats/participants/test_sync_participants.py index 6faf1e0e..9bb30143 100644 --- a/tests/e2e/helpdesk/chats/participants/test_sync_participants.py +++ b/tests/e2e/helpdesk/chats/participants/test_sync_participants.py @@ -15,19 +15,19 @@ def test_list_chat_participants(chat_participants_service): assert all(isinstance(participant, ChatParticipant) for participant in result) -@pytest.mark.skip(reason="Unskip after MPT-19124 completed") # noqa: AAA01 +@pytest.mark.skip(reason="Unskip after MPT-20015 completed") # noqa: AAA01 def test_create_chat_participant(created_chat_participant): assert isinstance(created_chat_participant, ChatParticipant) -@pytest.mark.skip(reason="Unskip after MPT-19124 completed") +@pytest.mark.skip(reason="Unskip after MPT-20015 completed") def test_update_chat_participant(chat_participants_service, created_chat_participant): result = chat_participants_service.update(created_chat_participant.id, {"status": "Active"}) assert isinstance(result, ChatParticipant) -@pytest.mark.skip(reason="Unskip after MPT-19124 completed") +@pytest.mark.skip(reason="Unskip after MPT-20015 completed") def test_delete_chat_participant(chat_participants_service, created_chat_participant): result = created_chat_participant