Skip to content

Commit

Permalink
test(unit): correct header name (#26446)
Browse files Browse the repository at this point in the history
  • Loading branch information
zeertzjq committed Dec 7, 2023
1 parent 4fc31cb commit 94c2703
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion test/unit/helpers.lua
Original file line number Diff line number Diff line change
Expand Up @@ -800,7 +800,12 @@ local function cppimport(path)
return cimport(Paths.test_source_path .. '/test/includes/pre/' .. path)
end

cimport('./src/nvim/types.h', './src/nvim/main.h', './src/nvim/os/time.h', './src/nvim/os/fs.h')
cimport(
'./src/nvim/types_defs.h',
'./src/nvim/main.h',
'./src/nvim/os/time.h',
'./src/nvim/os/fs.h'
)

local function conv_enum(etab, eval)
local n = tonumber(eval)
Expand Down

0 comments on commit 94c2703

Please sign in to comment.