We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 481c00e commit 56141d9Copy full SHA for 56141d9
app/src/test/java/org/thoughtcrime/securesms/conversation/v2/MentionViewModelTest.kt
@@ -116,7 +116,7 @@ class MentionViewModelTest : BaseViewModelTest() {
116
threadID = threadID,
117
application = InstrumentationRegistry.getInstrumentation().context as android.app.Application,
118
mmsSmsDatabase = mock {
119
- on { getRecentChatMemberAddresses(threadID, 20)} doAnswer {
+ on { getRecentChatMemberAddresses(eq(threadID), any())} doAnswer {
120
val limit = it.arguments[1] as Int
121
threadMembers.take(limit).map { m -> m.pubKey }
122
}
0 commit comments