Commit 43841e6 1 parent 1a7a31d commit 43841e6 Copy full SHA for 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 Original file line number Diff line number Diff line change @@ -337,7 +337,7 @@ class GroupTest {
337
337
val group = caroClient.conversations.newGroup(listOf (alix.walletAddress))
338
338
val conversation = boClient.conversations.newConversation(alix.walletAddress)
339
339
alixClient.conversations.syncGroups()
340
- alixClient.conversations.streamAllMessages().test {
340
+ alixClient.conversations.streamAllMessages(includeGroups = true ).test {
341
341
group.send(" hi" )
342
342
assertEquals(" hi" , awaitItem().encodedContent.content.toStringUtf8())
343
343
conversation.send(" hi again" )
@@ -375,7 +375,7 @@ class GroupTest {
375
375
val group = caroClient.conversations.newGroup(listOf (alix.walletAddress))
376
376
val conversation = boClient.conversations.newConversation(alix.walletAddress)
377
377
alixClient.conversations.syncGroups()
378
- alixClient.conversations.streamAllDecryptedMessages().test {
378
+ alixClient.conversations.streamAllDecryptedMessages(includeGroups = true ).test {
379
379
group.send(" hi" )
380
380
assertEquals(" hi" , awaitItem().encodedContent.content.toStringUtf8())
381
381
conversation.send(" hi again" )
You can’t perform that action at this time.
0 commit comments