mirror of
https://github.com/lune-org/lune.git
synced 2025-04-04 10:30:54 +01:00
fix(tests): possible fix failing spawn test on windows
This commit is contained in:
parent
9bc39d3aef
commit
b231417cf6
1 changed files with 1 additions and 1 deletions
|
@ -169,6 +169,6 @@ local stdinChild = process.spawn((((not IS_WINDOWS) and "xargs") or "powershell"
|
|||
})
|
||||
|
||||
assert(
|
||||
stdinChild.stdout == (echoMessage .. "\n"), -- Note that echo adds a newline
|
||||
stdinChild.stdout == (((IS_WINDOWS and `{string.char(239)}{string.char(191)}`) or "") .. echoMessage .. "\n"), -- Windows "echo" adds these "escape codes" to strings
|
||||
"Stdin passing did not return proper output"
|
||||
)
|
||||
|
|
Loading…
Add table
Reference in a new issue