fix(test): typing

This commit is contained in:
Barrett Ruth 2025-09-22 20:38:08 -04:00
parent 101062cb48
commit 87f9439607
2 changed files with 7 additions and 1 deletions

View file

@ -62,9 +62,11 @@ describe('Panel integration', function()
state.set_problem_id('b')
local problem = require('cp.problem')
local ctx = problem.create_context('codeforces', '2146', 'b', {
local config_module = require('cp.config')
local processed_config = config_module.setup({
contests = { codeforces = { cpp = { extension = 'cpp' } } },
})
local ctx = problem.create_context('codeforces', '2146', 'b', processed_config)
assert.has_no_errors(function()
run.load_test_cases(ctx, state)