From 0838b002531390d0f18a309fa5ef07e3abfb1e69 Mon Sep 17 00:00:00 2001 From: "Justin M. Keyes" Date: Tue, 30 Oct 2018 20:44:30 +0100 Subject: [PATCH] test/old: test_startup: fix "-u NONE" arg Lack of whitespace caused a file named "NONE-u" to be created (because GetVimCommand() returns a command ending with "-i NONE"). --- src/nvim/testdir/test_startup.vim | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/nvim/testdir/test_startup.vim b/src/nvim/testdir/test_startup.vim index 638c6802d4..2f4d857986 100644 --- a/src/nvim/testdir/test_startup.vim +++ b/src/nvim/testdir/test_startup.vim @@ -248,7 +248,7 @@ func Test_silent_ex_mode() endif " This caused an ml_get error. - let out = system(GetVimCommand() . '-u NONE -es -c''set verbose=1|h|exe "%norm\\"'' -c cq') + let out = system(GetVimCommand() . ' -u NONE -es -c''set verbose=1|h|exe "%norm\\"'' -c cq') call assert_notmatch('E315:', out) endfunc