Skip to content

Commit 8a093df

Browse files
committed
Replace spawn {} with useSpawn {}
1 parent 82f9a32 commit 8a093df

File tree

1 file changed

+1
-1
lines changed
  • test-android/src/androidInstrumentedTest/kotlin/io/matthewnelson/kmp/tor/test/android

1 file changed

+1
-1
lines changed

test-android/src/androidInstrumentedTest/kotlin/io/matthewnelson/kmp/tor/test/android/AndroidNativeTest.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ class AndroidNativeTest {
4747
private fun run(libName: String, timeout: Duration) {
4848
val process = Process.Builder(nativeLibraryDir.resolve(libName))
4949
.stdin(Stdio.Null)
50-
.spawn { p ->
50+
.useSpawn { p ->
5151
// Cannot use Stdio.Inherit. Must use System.out/err so that logcat picks it up
5252
p.stdoutFeed { line ->
5353
println(line ?: "STDOUT: END")

0 commit comments

Comments
 (0)