mirror of
https://github.com/SchildiChat/SchildiChat-android.git
synced 2024-11-23 01:45:52 +03:00
Fix linting error.
This commit is contained in:
parent
fa26e2a23e
commit
4ced6ca179
1 changed files with 1 additions and 1 deletions
|
@ -380,7 +380,7 @@ class CommonTestHelper(context: Context) {
|
|||
fun await(latch: CountDownLatch, timeout: Long? = TestConstants.timeOutMillis) {
|
||||
assertTrue(
|
||||
"Timed out after " + timeout + "ms waiting for something to happen. See stacktrace for cause.",
|
||||
latch.await( timeout ?: TestConstants.timeOutMillis, TimeUnit.MILLISECONDS)
|
||||
latch.await(timeout ?: TestConstants.timeOutMillis, TimeUnit.MILLISECONDS)
|
||||
)
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue