Skip to content

Commit

Permalink
Import helper
Browse files Browse the repository at this point in the history
  • Loading branch information
seadowg committed Apr 10, 2024
1 parent 8f300f7 commit c59b545
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
package org.odk.collect.android.support.rules

import android.os.Build
import org.junit.Assert
import org.junit.Assert.assertTrue
import org.junit.rules.TestRule
import org.junit.runner.Description
import org.junit.runners.model.Statement
Expand All @@ -14,7 +14,7 @@ class NotificationDrawerRule : TestRule {
return object : Statement() {
@Throws(Throwable::class)
override fun evaluate() {
Assert.assertTrue(
assertTrue(
"${this.javaClass.simpleName} does not support this API level!",
SUPPORTED_SDKS.contains(Build.VERSION.SDK_INT)
)
Expand Down

0 comments on commit c59b545

Please sign in to comment.