remove log
This commit is contained in:
parent
8c1938987b
commit
7e6376bf90
|
@ -27,7 +27,6 @@ import org.matrix.android.sdk.api.session.events.model.toValidDecryptedEvent
|
|||
import org.matrix.android.sdk.api.session.room.model.message.MessageContent
|
||||
import org.matrix.android.sdk.api.session.room.model.message.MessagePollContent
|
||||
import org.matrix.android.sdk.internal.crypto.store.IMXCommonCryptoStore
|
||||
import timber.log.Timber
|
||||
import javax.inject.Inject
|
||||
|
||||
internal class EventEditValidator @Inject constructor(val cryptoStore: IMXCommonCryptoStore) {
|
||||
|
@ -53,7 +52,6 @@ internal class EventEditValidator @Inject constructor(val cryptoStore: IMXCommon
|
|||
* If the original event was encrypted, the replacement should be too.
|
||||
*/
|
||||
fun validateEdit(originalEvent: Event?, replaceEvent: Event): EditValidity {
|
||||
Timber.v("###REPLACE valide event $originalEvent replaced $replaceEvent")
|
||||
// we might not know the original event at that time. In this case we can't perform the validation
|
||||
// Edits should be revalidated when the original event is received
|
||||
if (originalEvent == null) {
|
||||
|
|
|
@ -32,8 +32,8 @@ class DefaultGetDeviceInfoUseCaseTest {
|
|||
private val getDeviceInfoUseCase = DefaultGetDeviceInfoUseCase(activeSessionHolder.instance)
|
||||
|
||||
@Test
|
||||
fun `when execute, then get crypto device info`() {
|
||||
val result = runTest { getDeviceInfoUseCase.execute() }
|
||||
fun `when execute, then get crypto device info`() = runTest {
|
||||
val result = getDeviceInfoUseCase.execute()
|
||||
|
||||
result shouldBeEqualTo cryptoService.cryptoDeviceInfo
|
||||
}
|
||||
|
|
|
@ -57,7 +57,7 @@ class PushersManagerTest {
|
|||
)
|
||||
|
||||
@Test
|
||||
fun `when enqueueRegisterPusher, then HttpPusher created and enqueued`() {
|
||||
fun `when enqueueRegisterPusher, then HttpPusher created and enqueued`() = runTest {
|
||||
val pushKey = "abc"
|
||||
val gateway = "123"
|
||||
val pusherAppId = "app-id"
|
||||
|
@ -81,9 +81,7 @@ class PushersManagerTest {
|
|||
withEventIdOnly = true,
|
||||
)
|
||||
|
||||
runTest {
|
||||
pushersManager.enqueueRegisterPusher(pushKey, gateway)
|
||||
}
|
||||
pushersManager.enqueueRegisterPusher(pushKey, gateway)
|
||||
|
||||
val httpPusher = pushersService.verifyEnqueueAddHttpPusher()
|
||||
httpPusher shouldBeEqualTo expectedHttpPusher
|
||||
|
|
Loading…
Reference in New Issue