chore(tests): status test should use 0 as an exit code too

This commit is contained in:
Erica Marigold 2024-06-10 09:07:00 +05:30
parent f0906c98a2
commit 48760b6a0f
No known key found for this signature in database
GPG key ID: 2768CC0C23D245D1

View file

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