diff --git a/tests/process/spawn.luau b/tests/process/spawn.luau index c6c31c0..5f926cd 100644 --- a/tests/process/spawn.luau +++ b/tests/process/spawn.luau @@ -162,10 +162,7 @@ assert( ) -- Passing stdin strings should work - -local isWindows = process.os == "windows" - -local stdinChild = process.spawn((((not isWindows) and "xargs") or "powershell"), { +local stdinChild = process.spawn((((not IS_WINDOWS) and "xargs") or "powershell"), { "echo", }, { stdin = echoMessage,