From 138f5bb2a26e2a4bc7a0acafedc285d61ae51fe3 Mon Sep 17 00:00:00 2001 From: Barrett Ruth Date: Mon, 22 Sep 2025 19:20:35 -0400 Subject: [PATCH] this is not why --- lua/cp/runner/run.lua | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/lua/cp/runner/run.lua b/lua/cp/runner/run.lua index f996a60..b48af19 100644 --- a/lua/cp/runner/run.lua +++ b/lua/cp/runner/run.lua @@ -297,7 +297,8 @@ end ---@param state table ---@return boolean function M.load_test_cases(ctx, state) - local test_cases = parse_test_cases_from_cache(state.platform, state.contest_id, state.problem_id) + local test_cases = + parse_test_cases_from_cache(state.platform or '', state.contest_id or '', state.problem_id) if #test_cases == 0 then test_cases = parse_test_cases_from_files(ctx.input_file, ctx.expected_file)