diff options
author | Justin M. Keyes <justinkz@gmail.com> | 2016-04-22 04:11:45 -0400 |
---|---|---|
committer | Justin M. Keyes <justinkz@gmail.com> | 2016-04-22 04:11:45 -0400 |
commit | 3d7a6e4d54cbb6cb3cd7e35b604b956de9f0c950 (patch) | |
tree | be1e44070b1165ff920cea369847c548b8e7dea6 /test/unit | |
parent | c4de9c7cc9fffa1402b362653484a14799d8cd03 (diff) | |
parent | 9e1cacecbe2938c45205fdb30465303dfe2af968 (diff) | |
download | rneovim-3d7a6e4d54cbb6cb3cd7e35b604b956de9f0c950.tar.gz rneovim-3d7a6e4d54cbb6cb3cd7e35b604b956de9f0c950.tar.bz2 rneovim-3d7a6e4d54cbb6cb3cd7e35b604b956de9f0c950.zip |
Merge pull request #4367 from jbradaric/vim-7.4.1107
vim-patch:7.4.{1107,1114,1116,1117,1120}
Diffstat (limited to 'test/unit')
-rw-r--r-- | test/unit/formatc.lua | 2 | ||||
-rw-r--r-- | test/unit/tempfile_spec.lua | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/test/unit/formatc.lua b/test/unit/formatc.lua index 3f86c5f1b1..00637e0b8d 100644 --- a/test/unit/formatc.lua +++ b/test/unit/formatc.lua @@ -238,7 +238,7 @@ local function standalone(...) -- luacheck: ignore end -- uncomment this line (and comment the `return`) for standalone debugging -- example usage: --- ../../.deps/usr/bin/luajit formatc.lua ../../include/tempfile.h.generated.h +-- ../../.deps/usr/bin/luajit formatc.lua ../../include/fileio.h.generated.h -- ../../.deps/usr/bin/luajit formatc.lua /usr/include/malloc.h -- standalone(...) return formatc diff --git a/test/unit/tempfile_spec.lua b/test/unit/tempfile_spec.lua index e558ff04c8..b3e84db132 100644 --- a/test/unit/tempfile_spec.lua +++ b/test/unit/tempfile_spec.lua @@ -2,7 +2,7 @@ local lfs = require 'lfs' local helpers = require 'test.unit.helpers' local os = helpers.cimport './src/nvim/os/os.h' -local tempfile = helpers.cimport './src/nvim/tempfile.h' +local tempfile = helpers.cimport './src/nvim/fileio.h' describe('tempfile related functions', function() after_each(function() |