From ec1ca54d59e229d89bfae6e6eb9e311fa6cb329e Mon Sep 17 00:00:00 2001 From: ZyX Date: Fri, 23 Oct 2015 15:09:07 +0300 Subject: functests: Do not forget about -i argument Target: make all tests run with chmod -x ~/.config/nvim ~/.local/share/nvim. --- test/functional/ui/screen.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'test/functional/ui/screen.lua') diff --git a/test/functional/ui/screen.lua b/test/functional/ui/screen.lua index 1be83d745e..c767f9b83a 100644 --- a/test/functional/ui/screen.lua +++ b/test/functional/ui/screen.lua @@ -125,7 +125,7 @@ end do local spawn, nvim_prog = helpers.spawn, helpers.nvim_prog - local session = spawn({nvim_prog, '-u', 'NONE', '-N', '--embed'}) + local session = spawn({nvim_prog, '-u', 'NONE', '-i', 'NONE', '-N', '--embed'}) local status, rv = session:request('vim_get_color_map') if not status then print('failed to get color map') -- cgit