aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJustin M. Keyes <justinkz@gmail.com>2018-10-30 20:44:30 +0100
committerJustin M. Keyes <justinkz@gmail.com>2018-10-30 20:44:30 +0100
commit0838b002531390d0f18a309fa5ef07e3abfb1e69 (patch)
treeb33694a2f1296bb82a8feb2b8dfdae24f3dabef0
parent3159cd4503ae39301e010abe79c2d304437ee5c5 (diff)
downloadrneovim-0838b002531390d0f18a309fa5ef07e3abfb1e69.tar.gz
rneovim-0838b002531390d0f18a309fa5ef07e3abfb1e69.tar.bz2
rneovim-0838b002531390d0f18a309fa5ef07e3abfb1e69.zip
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").
-rw-r--r--src/nvim/testdir/test_startup.vim2
1 files changed, 1 insertions, 1 deletions
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-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