Skip to content

Commit

Permalink
Fix Android Test Setup
Browse files Browse the repository at this point in the history
  • Loading branch information
aschulz90 committed Feb 3, 2024
1 parent d7dc196 commit 92ad2c0
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion webrtc-kmp/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ kotlin {
}
}

android {
androidTarget {
publishAllLibraryVariants()
}
jvm()
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,9 @@ import kotlinx.coroutines.coroutineScope
import kotlinx.coroutines.runBlocking
import kotlinx.coroutines.withTimeout

actual fun runTest(
inline fun runTest(
timeout: Long,
block: suspend CoroutineScope.() -> Unit
crossinline block: suspend CoroutineScope.() -> Unit
) {
runBlocking {
withTimeout(timeout) {
Expand Down

0 comments on commit 92ad2c0

Please sign in to comment.