From aa10e88495961e03ebdbd51319a31c974068dcea Mon Sep 17 00:00:00 2001 From: Erica Marigold Date: Mon, 24 Jun 2024 15:14:36 +0530 Subject: [PATCH] chore(tests): replace old process.spawn usage with process.exec for stdio --- tests/stdio/format.luau | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/stdio/format.luau b/tests/stdio/format.luau index 7ade5f5..c0cc7cf 100644 --- a/tests/stdio/format.luau +++ b/tests/stdio/format.luau @@ -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()