Attempt to fix test on CI.
The test is failing on CI with this error: expected instance of: io.element.android.libraries.architecture.Async$Success but was instance of : io.element.android.libraries.architecture.Async$Loading with value : Loading(prevData=null)
This commit is contained in:
parent
a8b0256386
commit
b9b746bea7
2 changed files with 2 additions and 2 deletions
|
|
@ -72,7 +72,7 @@ class FakeEncryptionService : EncryptionService {
|
|||
this.isLastDevice = isLastDevice
|
||||
}
|
||||
|
||||
override suspend fun isLastDevice(): Result<Boolean> {
|
||||
override suspend fun isLastDevice(): Result<Boolean> = simulateLongTask {
|
||||
return Result.success(isLastDevice)
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue