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 @@ -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)
Original file line number Diff line number Diff line change
Expand Up @@ -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)