comparison 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
comparison
equal deleted inserted replaced
18980:120c9621fd30 18981:25a60d11adc2
553 endif 553 endif
554 endfunc 554 endfunc
555 555
556 func Test_cmdline_complete_bang() 556 func Test_cmdline_complete_bang()
557 if executable('whoami') 557 if executable('whoami')
558 return 558 call feedkeys(":!whoam\<C-A>\<C-B>\"\<CR>", 'tx')
559 endif 559 call assert_match('^".*\<whoami\>', @:)
560 call feedkeys(":!whoam\<C-A>\<C-B>\"\<CR>", 'tx') 560 endif
561 call assert_match('^".*\<whoami\>', @:)
562 endfunc 561 endfunc
563 562
564 funct Test_cmdline_complete_languages() 563 funct Test_cmdline_complete_languages()
565 let lang = substitute(execute('language messages'), '.*"\(.*\)"$', '\1', '') 564 let lang = substitute(execute('language messages'), '.*"\(.*\)"$', '\1', '')
566 565