diff options
author | ZyX <kp-pav@yandex.ru> | 2017-04-09 01:55:19 +0300 |
---|---|---|
committer | ZyX <kp-pav@yandex.ru> | 2017-04-09 03:24:14 +0300 |
commit | 69d1003bf79b7466d2fea45f94aeddbedd246049 (patch) | |
tree | a07ae303c5999db40a96e37da800c7ab836e8249 /test/functional/eval/system_spec.lua | |
parent | c35bd4d07419a4167f43d1ea60159d922d8bdd11 (diff) | |
download | rneovim-69d1003bf79b7466d2fea45f94aeddbedd246049.tar.gz rneovim-69d1003bf79b7466d2fea45f94aeddbedd246049.tar.bz2 rneovim-69d1003bf79b7466d2fea45f94aeddbedd246049.zip |
functests: Fix some tests which are failing locally for unrelated reasons
Diffstat (limited to 'test/functional/eval/system_spec.lua')
-rw-r--r-- | test/functional/eval/system_spec.lua | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/test/functional/eval/system_spec.lua b/test/functional/eval/system_spec.lua index 0b7d3dce21..bf95752e3b 100644 --- a/test/functional/eval/system_spec.lua +++ b/test/functional/eval/system_spec.lua @@ -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 |