functests: Fix some tests which are failing locally for unrelated reasons

This commit is contained in:
ZyX
2017-04-09 01:55:19 +03:00
parent c35bd4d074
commit 69d1003bf7
5 changed files with 15 additions and 5 deletions

View File

@@ -1,4 +1,6 @@
local helpers = require('test.functional.helpers')(after_each)
local nvim_dir = helpers.nvim_dir
local eq, call, clear, eval, feed_command, feed, nvim =
helpers.eq, helpers.call, helpers.clear, helpers.eval, helpers.feed_command,
helpers.feed, helpers.nvim
@@ -31,7 +33,7 @@ describe('system()', function()
describe('command passed as a List', function()
local function printargs_path()
return helpers.nvim_dir..'/printargs-test'
return nvim_dir..'/printargs-test'
.. (helpers.os_name() == 'windows' and '.exe' or '')
end