Skip to content

Commit

Permalink
fix up read reciepts test
Browse files Browse the repository at this point in the history
  • Loading branch information
nplasterer committed Jan 17, 2025
1 parent 76fd8c1 commit 82910a6
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -39,8 +39,9 @@ class ReadReceiptTest {
val contentType: String = messages.first().encodedContent.type.typeId
assertEquals(contentType, "readReceipt")
}
val convos = runBlocking { alixClient.conversations.list() }
assertEquals(
runBlocking { alixConversation.lastMessage() }!!.encodedContent.type.typeId,
runBlocking { convos.first().lastMessage() }!!.encodedContent.type.typeId,
"text"
)
}
Expand Down

0 comments on commit 82910a6

Please sign in to comment.