neovim

Neovim text editor
git clone https://git.dasho.dev/neovim.git
Log | Files | Refs | README

commit 94c2703a0390fc7908faf5dcde80615ddf5e616e
parent 4fc31cb69fab9dff66e779a2780aaf16fcc8bb13
Author: zeertzjq <zeertzjq@outlook.com>
Date:   Thu,  7 Dec 2023 17:02:08 +0800

test(unit): correct header name (#26446)


Diffstat:
Mtest/unit/helpers.lua | 7++++++-
1 file changed, 6 insertions(+), 1 deletion(-)

diff --git 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)