mirror of
https://github.com/element-hq/element-android
synced 2024-11-27 11:59:12 +03:00
Fix missing mapper in CryptoStoreHelper for tests
This commit is contained in:
parent
682905df25
commit
669beb1156
1 changed files with 2 additions and 0 deletions
|
@ -21,6 +21,7 @@ import org.matrix.android.sdk.internal.crypto.store.IMXCryptoStore
|
||||||
import org.matrix.android.sdk.internal.crypto.store.db.RealmCryptoStore
|
import org.matrix.android.sdk.internal.crypto.store.db.RealmCryptoStore
|
||||||
import org.matrix.android.sdk.internal.crypto.store.db.RealmCryptoStoreModule
|
import org.matrix.android.sdk.internal.crypto.store.db.RealmCryptoStoreModule
|
||||||
import org.matrix.android.sdk.internal.crypto.store.db.mapper.CrossSigningKeysMapper
|
import org.matrix.android.sdk.internal.crypto.store.db.mapper.CrossSigningKeysMapper
|
||||||
|
import org.matrix.android.sdk.internal.crypto.store.db.mapper.MyDeviceLastSeenInfoEntityMapper
|
||||||
import org.matrix.android.sdk.internal.di.MoshiProvider
|
import org.matrix.android.sdk.internal.di.MoshiProvider
|
||||||
import org.matrix.android.sdk.internal.util.time.DefaultClock
|
import org.matrix.android.sdk.internal.util.time.DefaultClock
|
||||||
import kotlin.random.Random
|
import kotlin.random.Random
|
||||||
|
@ -37,6 +38,7 @@ internal class CryptoStoreHelper {
|
||||||
userId = "userId_" + Random.nextInt(),
|
userId = "userId_" + Random.nextInt(),
|
||||||
deviceId = "deviceId_sample",
|
deviceId = "deviceId_sample",
|
||||||
clock = DefaultClock(),
|
clock = DefaultClock(),
|
||||||
|
myDeviceLastSeenInfoEntityMapper = MyDeviceLastSeenInfoEntityMapper()
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue