diff options
author | Justin M. Keyes <justinkz@gmail.com> | 2018-04-17 10:33:36 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-04-17 10:33:36 +0200 |
commit | 7a13611ba2033766da8cad73f46362bd01632c2c (patch) | |
tree | 170eff47d8e67ad5e2c484697f4bd999abf9844e /test/unit/helpers.lua | |
parent | 48967695c441d13bc9faa8aae4bed8d6fb5bdc14 (diff) | |
parent | 387fbcd95cade4b0c037d18f404944676a59db09 (diff) | |
download | rneovim-7a13611ba2033766da8cad73f46362bd01632c2c.tar.gz rneovim-7a13611ba2033766da8cad73f46362bd01632c2c.tar.bz2 rneovim-7a13611ba2033766da8cad73f46362bd01632c2c.zip |
Merge #8276 'startup: Make -s - read from stdin'
Diffstat (limited to 'test/unit/helpers.lua')
-rw-r--r-- | test/unit/helpers.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/unit/helpers.lua b/test/unit/helpers.lua index 5cc2be50b1..f8143a0125 100644 --- a/test/unit/helpers.lua +++ b/test/unit/helpers.lua @@ -779,7 +779,7 @@ local function gen_itp(it) end local function cppimport(path) - return cimport(Paths.test_include_path .. '/' .. 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') |