chore(tests): replace old process.spawn usage with process.exec for stdio

This commit is contained in:
Erica Marigold 2024-06-24 15:14:36 +05:30
parent 0c346a5946
commit aa10e88495
No known key found for this signature in database
GPG key ID: 2768CC0C23D245D1

View file

@ -109,7 +109,7 @@ assertContains(
local _, errorMessage = pcall(function()
local function innerInnerFn()
process.spawn("PROGRAM_THAT_DOES_NOT_EXIST")
process.exec("PROGRAM_THAT_DOES_NOT_EXIST")
end
local function innerFn()
innerInnerFn()