diff options
author | Justin M. Keyes <justinkz@gmail.com> | 2016-05-04 21:32:53 -0400 |
---|---|---|
committer | Justin M. Keyes <justinkz@gmail.com> | 2016-05-04 21:32:53 -0400 |
commit | a62cc5f807a6dc730c871c1fd53f29805a9cdc6e (patch) | |
tree | 03e26246b5a89ffcd584b0b33f69dbf857450344 /test/unit | |
parent | e2cc3f98fb3ca771d9bd108ae9c37c19bea8025b (diff) | |
parent | 11f41a3c8c4b667b30db38875b37d5d25979003e (diff) | |
download | rneovim-a62cc5f807a6dc730c871c1fd53f29805a9cdc6e.tar.gz rneovim-a62cc5f807a6dc730c871c1fd53f29805a9cdc6e.tar.bz2 rneovim-a62cc5f807a6dc730c871c1fd53f29805a9cdc6e.zip |
Merge pull request #4678 from KillTheMule/vim-7.4.672
vim-patch:7.4.672
Diffstat (limited to 'test/unit')
-rw-r--r-- | test/unit/os/fs_spec.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/unit/os/fs_spec.lua b/test/unit/os/fs_spec.lua index 2f393d353d..71b5e7f576 100644 --- a/test/unit/os/fs_spec.lua +++ b/test/unit/os/fs_spec.lua @@ -148,7 +148,7 @@ describe('fs function', function() local function os_can_exe(name) local buf = ffi.new('char *[1]') buf[0] = NULL - local ok = fs.os_can_exe(to_cstr(name), buf) + local ok = fs.os_can_exe(to_cstr(name), buf, true) -- When os_can_exe returns true, it must set the path. -- When it returns false, the path must be NULL. |