Skip to content

Commit

Permalink
chore: style
Browse files Browse the repository at this point in the history
  • Loading branch information
ThePrimeagen committed Dec 2, 2023
1 parent d3f4fe9 commit 581da79
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions lua/harpoon/test/list_spec.lua
Original file line number Diff line number Diff line change
Expand Up @@ -38,15 +38,15 @@ describe("list", function()
local config = Config.merge_config({
foo = {
select_with_nil = true,
select = function (list_item, options)
foo_selected = {list_item, options}
end
select = function(list_item, options)
foo_selected = { list_item, options }
end,
},
bar = {
select = function (list_item, options)
bar_selected = {list_item, options}
end
}
select = function(list_item, options)
bar_selected = { list_item, options }
end,
},
})
local fooc = Config.get_config(config, "foo")
local barc = Config.get_config(config, "bar")
Expand All @@ -57,7 +57,7 @@ describe("list", function()
foo:select(4, {})
bar:select(4, {})

eq({nil, {}}, foo_selected)
eq({ nil, {} }, foo_selected)
eq(nil, bar_selected)
end)
end)

0 comments on commit 581da79

Please sign in to comment.