From 94c2703a0390fc7908faf5dcde80615ddf5e616e Mon Sep 17 00:00:00 2001 From: zeertzjq Date: Thu, 7 Dec 2023 17:02:08 +0800 Subject: [PATCH] test(unit): correct header name (#26446) --- test/unit/helpers.lua | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) 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)