changeset 18981:25a60d11adc2 v8.2.0051

patch 8.2.0051: command line completion test skipped Commit: https://github.com/vim/vim/commit/731a799bb926c6f424dbfb63430cf631ca7e132a Author: Bram Moolenaar <Bram@vim.org> Date: Sat Dec 28 14:06:50 2019 +0100 patch 8.2.0051: command line completion test skipped Problem: Command line completion test skipped. (Christian Brabandt) Solution: Invert condition.
author Bram Moolenaar <Bram@vim.org>
date Sat, 28 Dec 2019 14:15:03 +0100
parents 120c9621fd30
children 26a583bf16df
files src/testdir/test_cmdline.vim src/version.c
diffstat 2 files changed, 4 insertions(+), 3 deletions(-) [+]
line wrap: on
line diff
--- a/src/testdir/test_cmdline.vim
+++ b/src/testdir/test_cmdline.vim
@@ -555,10 +555,9 @@ endfunc
 
 func Test_cmdline_complete_bang()
   if executable('whoami')
-    return
+    call feedkeys(":!whoam\<C-A>\<C-B>\"\<CR>", 'tx')
+    call assert_match('^".*\<whoami\>', @:)
   endif
-  call feedkeys(":!whoam\<C-A>\<C-B>\"\<CR>", 'tx')
-  call assert_match('^".*\<whoami\>', @:)
 endfunc
 
 funct Test_cmdline_complete_languages()
--- a/src/version.c
+++ b/src/version.c
@@ -743,6 +743,8 @@ static char *(features[]) =
 static int included_patches[] =
 {   /* Add new patch number below this line */
 /**/
+    51,
+/**/
     50,
 /**/
     49,