fix(tests): possibly fix failing spawn test on windows (x2)

This commit is contained in:
Erica Marigold 2023-10-03 19:29:33 +05:30 committed by GitHub
parent b231417cf6
commit 947243fcd9
Signed by: DevComp
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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(