diff options
author | zeertzjq <zeertzjq@outlook.com> | 2023-12-07 17:02:08 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-12-07 17:02:08 +0800 |
commit | 94c2703a0390fc7908faf5dcde80615ddf5e616e (patch) | |
tree | 64159f89410ab3ccbd484bbc58fa802d3b46419e /test/unit/helpers.lua | |
parent | 4fc31cb69fab9dff66e779a2780aaf16fcc8bb13 (diff) | |
download | rneovim-94c2703a0390fc7908faf5dcde80615ddf5e616e.tar.gz rneovim-94c2703a0390fc7908faf5dcde80615ddf5e616e.tar.bz2 rneovim-94c2703a0390fc7908faf5dcde80615ddf5e616e.zip |
test(unit): correct header name (#26446)
Diffstat (limited to 'test/unit/helpers.lua')
-rw-r--r-- | test/unit/helpers.lua | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/test/unit/helpers.lua b/test/unit/helpers.lua index 86f3a7a662..e56f8d5058 100644 --- a/test/unit/helpers.lua +++ b/test/unit/helpers.lua @@ -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) |