From 8a0498f7b67887f38998c4d5eff6b5b870492a33 Mon Sep 17 00:00:00 2001 From: Olivia Appleton Date: Thu, 5 Sep 2024 00:54:59 -0500 Subject: [PATCH] attempt fix of GA setup --- lua/test.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lua/test.lua b/lua/test.lua index 3a03fed7..a99f54db 100644 --- a/lua/test.lua +++ b/lua/test.lua @@ -26,7 +26,7 @@ local function check_problem(problem_func, expected_answer, timeout_seconds, pro end if elapsed_time > timeout_seconds then - error("Problem " .. problem_name .. " took " .. elapsed_time .. " seconds, exceeding the expected time limit of " .. timeout_seconds .. " seconds.") + error("Problem " .. problem_name .. " took " .. elapsed_time .. "s, exceeding the expected time limit of " .. timeout_seconds .. "s.") end print("Problem " .. problem_name .. " passed.")