- fix lint error

This commit is contained in:
ariskotsomitopoulos 2022-01-11 16:14:26 +02:00
parent 1224144487
commit 8adeab0ddd

View File

@ -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() {