mirror of
https://github.com/SchildiChat/SchildiChat-android.git
synced 2025-02-16 12:00:03 +03:00
- fix lint error
This commit is contained in:
parent
1224144487
commit
8adeab0ddd
1 changed files with 2 additions and 2 deletions
|
@ -27,10 +27,10 @@ import org.junit.runners.model.Statement
|
|||
class RetryTestRule(val retryCount: Int = 3) : TestRule {
|
||||
|
||||
override fun apply(base: Statement, description: Description): Statement {
|
||||
return statement(base, description)
|
||||
return statement(base)
|
||||
}
|
||||
|
||||
private fun statement(base: Statement, description: Description): Statement {
|
||||
private fun statement(base: Statement): Statement {
|
||||
return object : Statement() {
|
||||
@Throws(Throwable::class)
|
||||
override fun evaluate() {
|
||||
|
|
Loading…
Add table
Reference in a new issue