summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2019-12-28 14:06:50 +0100
committerBram Moolenaar <Bram@vim.org>2019-12-28 14:06:50 +0100
commit731a799bb926c6f424dbfb63430cf631ca7e132a (patch)
tree57be1c8b0bc62a6137cf08b190da36c756530278
parent8cd6cd8087ccf08e4303dbf5f732fc4b82b917e1 (diff)
downloadvim-git-731a799bb926c6f424dbfb63430cf631ca7e132a.tar.gz
patch 8.2.0051: command line completion test skippedv8.2.0051
Problem: Command line completion test skipped. (Christian Brabandt) Solution: Invert condition.
-rw-r--r--src/testdir/test_cmdline.vim5
-rw-r--r--src/version.c2
2 files changed, 4 insertions, 3 deletions
diff --git a/src/testdir/test_cmdline.vim b/src/testdir/test_cmdline.vim
index 38b5826e6..6dc6c89ff 100644
--- 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()
diff --git a/src/version.c b/src/version.c
index 568c15649..b8c487016 100644
--- 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,