We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e6e9597 commit 46a433dCopy full SHA for 46a433d
library/src/androidTest/java/org/xmtp/android/library/GroupTest.kt
@@ -333,14 +333,14 @@ class GroupTest {
333
val messageId = runBlocking { group.send("gm") }
334
runBlocking { group.sync() }
335
assertEquals(group.messages().first().body, "gm")
336
+ assertEquals(group.messages().first().id, messageId)
337
assertEquals(group.messages().size, 3)
338
339
runBlocking { alixClient.conversations.syncGroups() }
340
val sameGroup = runBlocking { alixClient.conversations.listGroups().last() }
341
runBlocking { sameGroup.sync() }
342
assertEquals(sameGroup.messages().size, 2)
343
assertEquals(sameGroup.messages().first().body, "gm")
- assertEquals(sameGroup.messages().first().id, messageId)
344
}
345
346
@Test
0 commit comments