Skip to content

Commit

Permalink
path fix?
Browse files Browse the repository at this point in the history
  • Loading branch information
tris203 committed Jan 6, 2024
1 parent 620adbb commit fee19be
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions tests/hawtkeys/e2e_spec.lua
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,6 @@ describe("file searching", function()
notMatch = notMatch + 1
end
end
print(vim.inspect(keymaps))
eq(vim.tbl_count(keymaps), notMatch + 1)
end)

Expand All @@ -54,14 +53,14 @@ describe("file searching", function()
for _, v in ipairs(keymaps) do
if
vim.deep_equal(v, {
from_file = vim.fn.stdpath("config") .. "/e2e_config.lua",
from_file = config_file:absolute(),
lhs = "<leader>example",
mode = "n",
rhs = "<cmd>echo 'Example'<cr>",
})
then
eq(v, {
from_file = vim.fn.stdpath("config") .. "/e2e_config.lua",
from_file = config_file:absolute(),
lhs = "<leader>example",
mode = "n",
rhs = "<cmd>echo 'Example'<cr>",
Expand Down

0 comments on commit fee19be

Please sign in to comment.