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").
This commit is contained in:
Justin M. Keyes 2018-10-30 20:44:30 +01:00
parent 3159cd4503
commit 0838b00253

View File

@ -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-y>\<c-d>"'' -c cq')
let out = system(GetVimCommand() . ' -u NONE -es -c''set verbose=1|h|exe "%norm\<c-y>\<c-d>"'' -c cq')
call assert_notmatch('E315:', out)
endfunc