# HG changeset patch # User Bram Moolenaar # Date 1577538903 -3600 # Node ID 25a60d11adc2650ce554b95540e485b9ed9e24ac # Parent 120c9621fd30d416c4200ef3dc336b09761363ea patch 8.2.0051: command line completion test skipped Commit: https://github.com/vim/vim/commit/731a799bb926c6f424dbfb63430cf631ca7e132a Author: Bram Moolenaar 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. diff --git a/src/testdir/test_cmdline.vim b/src/testdir/test_cmdline.vim --- 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\\\"\", 'tx') + call assert_match('^".*\', @:) endif - call feedkeys(":!whoam\\\"\", 'tx') - call assert_match('^".*\', @:) endfunc funct Test_cmdline_complete_languages() diff --git a/src/version.c b/src/version.c --- 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,