diff options
author | Justin M. Keyes <justinkz@gmail.com> | 2018-10-30 20:44:30 +0100 |
---|---|---|
committer | Justin M. Keyes <justinkz@gmail.com> | 2018-10-30 20:44:30 +0100 |
commit | 0838b002531390d0f18a309fa5ef07e3abfb1e69 (patch) | |
tree | b33694a2f1296bb82a8feb2b8dfdae24f3dabef0 | |
parent | 3159cd4503ae39301e010abe79c2d304437ee5c5 (diff) | |
download | rneovim-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.vim | 2 |
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 |