diff options
author | Justin M. Keyes <justinkz@gmail.com> | 2017-08-19 13:15:12 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-08-19 13:15:12 +0200 |
commit | b3da396804ec0a63f11b86a363bd4c98e23f8ebd (patch) | |
tree | cf437e397f9e06594de73f4ac65f9725c303449f /src/nvim/testdir/test_startup.vim | |
parent | f465bf0cfa3c20152de2d3ca2ddede9fbcde086e (diff) | |
parent | b13070ec01844977f10cae38fc6f2a0fd9defad8 (diff) | |
download | rneovim-b3da396804ec0a63f11b86a363bd4c98e23f8ebd.tar.gz rneovim-b3da396804ec0a63f11b86a363bd4c98e23f8ebd.tar.bz2 rneovim-b3da396804ec0a63f11b86a363bd4c98e23f8ebd.zip |
Merge #7171 from justinmk/doc
Diffstat (limited to 'src/nvim/testdir/test_startup.vim')
-rw-r--r-- | src/nvim/testdir/test_startup.vim | 6 |
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) |