Skip to content

Commit a50a436

Browse files
committed
Whaaaaaat
1 parent 7ff3efc commit a50a436

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

checks/rogue_util_calls_spec.lua

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,16 +40,18 @@ describe("Extent util calls:", function()
4040
before_each(function()
4141
load_fixture("/lua.lua")
4242
vim.opt.fileencoding = 'utf-8'
43-
vim.fn.cursor(31, 26)
43+
vim.fn.cursor(31, 26) -- TA|RGET_DESCENDANT_TYPES
4444
end)
4545

4646
for _, command in ipairs(commands) do
4747
it(command .. " encounters no " .. "util.R calls", function()
48+
vim.fn.cursor(31, 26) -- TA|RGET_DESCENDANT_TYPES
4849
vim.cmd(command)
4950
assert.stub(util_R_stub).was.called(0)
5051
end)
5152

5253
it(command .. " encounters no " .. "util.log calls", function()
54+
vim.fn.cursor(31, 26) -- TA|RGET_DESCENDANT_TYPES
5355
vim.cmd(command)
5456
assert.stub(util_log_stub).was.called(0)
5557
end)

0 commit comments

Comments
 (0)