mirror of
https://github.com/lune-org/lune.git
synced 2025-04-04 10:30:54 +01:00
chore(tests): status test should use 0 as an exit code too
This commit is contained in:
parent
f0906c98a2
commit
48760b6a0f
1 changed files with 1 additions and 1 deletions
|
@ -2,7 +2,7 @@ local process = require("@lune/process")
|
|||
|
||||
-- The exit code of an child process should be correct
|
||||
|
||||
local randomExitCode = math.random(1, 255)
|
||||
local randomExitCode = math.random(0, 255)
|
||||
local isOk = randomExitCode == 0
|
||||
local child = process.spawn("exit", { tostring(randomExitCode) }, { shell = true })
|
||||
local status = child.status()
|
||||
|
|
Loading…
Add table
Reference in a new issue