diff --git a/spec/command_parsing_spec.lua b/spec/command_parsing_spec.lua index 88afcf2..693f2b2 100644 --- a/spec/command_parsing_spec.lua +++ b/spec/command_parsing_spec.lua @@ -401,8 +401,8 @@ describe('cp command parsing', function() if num_args == 2 then local candidates = {} - local cp = require('cp') - local context = cp.get_current_context() + local cp_mod = require('cp') + local context = cp_mod.get_current_context() if context.platform and context.contest_id then vim.list_extend(candidates, actions) local cache = require('cp.cache')