Skip to content

Commit

Permalink
chore(tests): replace old process.spawn usage with process.exec for s…
Browse files Browse the repository at this point in the history
…tdio
  • Loading branch information
CompeyDev committed Jun 24, 2024
1 parent 0c346a5 commit aa10e88
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/stdio/format.luau
Original file line number Diff line number Diff line change
Expand Up @@ -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()
Expand Down

0 comments on commit aa10e88

Please sign in to comment.