diff --git a/sdk/communication/azure-communication-chat/tests/test_chat_thread_client_e2e.py b/sdk/communication/azure-communication-chat/tests/test_chat_thread_client_e2e.py index 6ff0f6967aef..afe9b51b7594 100644 --- a/sdk/communication/azure-communication-chat/tests/test_chat_thread_client_e2e.py +++ b/sdk/communication/azure-communication-chat/tests/test_chat_thread_client_e2e.py @@ -194,9 +194,3 @@ def test_send_typing_notification(self): self.chat_thread_client.send_typing_notification() - @pytest.mark.live_test_only - def test_send_read_receipt(self): - self._create_thread() - self._send_message() - - self.chat_thread_client.send_read_receipt(self.message_id) diff --git a/sdk/communication/azure-communication-chat/tests/test_chat_thread_client_e2e_async.py b/sdk/communication/azure-communication-chat/tests/test_chat_thread_client_e2e_async.py index 69f123607498..fb23f51bf83d 100644 --- a/sdk/communication/azure-communication-chat/tests/test_chat_thread_client_e2e_async.py +++ b/sdk/communication/azure-communication-chat/tests/test_chat_thread_client_e2e_async.py @@ -263,17 +263,3 @@ async def test_send_typing_notification(self): if not self.is_playback(): await self.chat_client.delete_chat_thread(self.thread_id) - - @pytest.mark.live_test_only - @AsyncCommunicationTestCase.await_prepared_test - async def test_send_read_receipt(self): - async with self.chat_client: - await self._create_thread() - - async with self.chat_thread_client: - await self._send_message() - - await self.chat_thread_client.send_read_receipt(self.message_id) - - if not self.is_playback(): - await self.chat_client.delete_chat_thread(self.thread_id)