diff src/testdir/test_cmdline.vim @ 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 5bef1043abff
children bfcafd1a3e37
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()