aboutsummaryrefslogtreecommitdiff
path: root/src/nvim/testdir/test_startup.vim
diff options
context:
space:
mode:
authorckelsel <ckelsel@hotmail.com>2017-08-21 09:19:08 +0800
committerckelsel <ckelsel@hotmail.com>2017-08-21 09:19:08 +0800
commit0b6fa3a553da3b83419c48fcbb6fb3ec413598e0 (patch)
tree63cda34cb93df36f64be4beea934ee34d850104c /src/nvim/testdir/test_startup.vim
parent673fc748237345914e0ad584bc4cba997c96a37e (diff)
parent8d1ccb606d3806dcf9c4bcfdb0446d8139c0e765 (diff)
downloadrneovim-0b6fa3a553da3b83419c48fcbb6fb3ec413598e0.tar.gz
rneovim-0b6fa3a553da3b83419c48fcbb6fb3ec413598e0.tar.bz2
rneovim-0b6fa3a553da3b83419c48fcbb6fb3ec413598e0.zip
Merge remote-tracking branch 'upstream/master'
Diffstat (limited to 'src/nvim/testdir/test_startup.vim')
-rw-r--r--src/nvim/testdir/test_startup.vim6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/nvim/testdir/test_startup.vim b/src/nvim/testdir/test_startup.vim
index 64f7f31294..5a38178bd5 100644
--- a/src/nvim/testdir/test_startup.vim
+++ b/src/nvim/testdir/test_startup.vim
@@ -76,11 +76,11 @@ func Test_help_arg()
let found = []
for line in lines
if line =~ '-R.*Read-only mode'
- call add(found, 'Readonly mode')
+ call add(found, 'Readonly mode')
endif
" Watch out for a second --version line in the Gnome version.
- if line =~ '--version.*Print version information and exit'
- call add(found, "--version")
+ if line =~ '--version.*Print version information'
+ call add(found, "--version")
endif
endfor
call assert_equal(['Readonly mode', '--version'], found)