Second attempt...

This commit is contained in:
Benoit Marty 2023-12-20 14:33:16 +01:00
parent 139f5cdf72
commit f94f5e4713
2 changed files with 3 additions and 4 deletions

View file

@ -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)
}