Skip to content

Commit e2f5ac2

Browse files
author
Andrew Ferrier
committed
style: Format
1 parent 4520cd3 commit e2f5ac2

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

tests/debugprint.lua

+6-6
Original file line numberDiff line numberDiff line change
@@ -380,7 +380,7 @@ describe("move to new line", function()
380380
end)
381381

382382
it("true below", function()
383-
debugprint.setup({move_to_debugline = true})
383+
debugprint.setup({ move_to_debugline = true })
384384

385385
set_lines({
386386
"foo",
@@ -397,11 +397,11 @@ describe("move to new line", function()
397397
"bar",
398398
})
399399

400-
assert.are.same(vim.api.nvim_win_get_cursor(0), {2, 0})
400+
assert.are.same(vim.api.nvim_win_get_cursor(0), { 2, 0 })
401401
end)
402402

403403
it("true above", function()
404-
debugprint.setup({move_to_debugline = true})
404+
debugprint.setup({ move_to_debugline = true })
405405

406406
set_lines({
407407
"foo",
@@ -418,11 +418,11 @@ describe("move to new line", function()
418418
"bar",
419419
})
420420

421-
assert.are.same(vim.api.nvim_win_get_cursor(0), {1, 0})
421+
assert.are.same(vim.api.nvim_win_get_cursor(0), { 1, 0 })
422422
end)
423423

424424
it("false", function()
425-
debugprint.setup({move_to_debugline = false})
425+
debugprint.setup({ move_to_debugline = false })
426426

427427
set_lines({
428428
"foo",
@@ -439,6 +439,6 @@ describe("move to new line", function()
439439
"bar",
440440
})
441441

442-
assert.are.same(vim.api.nvim_win_get_cursor(0), {1, 0})
442+
assert.are.same(vim.api.nvim_win_get_cursor(0), { 1, 0 })
443443
end)
444444
end)

0 commit comments

Comments
 (0)