mirror of
https://github.com/lune-org/lune.git
synced 2025-04-04 10:30:54 +01:00
fix(tests): possibly fix failing spawn test on windows (x2)
This commit is contained in:
parent
b231417cf6
commit
947243fcd9
1 changed files with 2 additions and 2 deletions
|
@ -163,9 +163,9 @@ assert(
|
|||
|
||||
-- Passing stdin strings should work
|
||||
local stdinChild = process.spawn((((not IS_WINDOWS) and "xargs") or "powershell"), {
|
||||
"echo",
|
||||
"echo",
|
||||
}, {
|
||||
stdin = echoMessage,
|
||||
stdin = (IS_WINDOWS and (echoMessage .. "\n\n")) or echoMessage,
|
||||
})
|
||||
|
||||
assert(
|
||||
|
|
Loading…
Add table
Reference in a new issue