Skip to content

Commit 43841e6

Browse files
committed
get all the tests working
1 parent 1a7a31d commit 43841e6

File tree

1 file changed

+2
-2
lines changed
  • library/src/androidTest/java/org/xmtp/android/library

1 file changed

+2
-2
lines changed

library/src/androidTest/java/org/xmtp/android/library/GroupTest.kt

+2-2
Original file line numberDiff line numberDiff line change
@@ -337,7 +337,7 @@ class GroupTest {
337337
val group = caroClient.conversations.newGroup(listOf(alix.walletAddress))
338338
val conversation = boClient.conversations.newConversation(alix.walletAddress)
339339
alixClient.conversations.syncGroups()
340-
alixClient.conversations.streamAllMessages().test {
340+
alixClient.conversations.streamAllMessages(includeGroups = true).test {
341341
group.send("hi")
342342
assertEquals("hi", awaitItem().encodedContent.content.toStringUtf8())
343343
conversation.send("hi again")
@@ -375,7 +375,7 @@ class GroupTest {
375375
val group = caroClient.conversations.newGroup(listOf(alix.walletAddress))
376376
val conversation = boClient.conversations.newConversation(alix.walletAddress)
377377
alixClient.conversations.syncGroups()
378-
alixClient.conversations.streamAllDecryptedMessages().test {
378+
alixClient.conversations.streamAllDecryptedMessages(includeGroups = true).test {
379379
group.send("hi")
380380
assertEquals("hi", awaitItem().encodedContent.content.toStringUtf8())
381381
conversation.send("hi again")

0 commit comments

Comments
 (0)