comparison src/testdir/test_arglist.vim @ 30657:ac908e454519 v9.0.0663

patch 9.0.0663: tests check for +cmdwin feature which is always present Commit: https://github.com/vim/vim/commit/d1955987147a299d7bca30cd1b5792535ff0745c Author: zeertzjq <zeertzjq@outlook.com> Date: Wed Oct 5 11:24:46 2022 +0100 patch 9.0.0663: tests check for +cmdwin feature which is always present Problem: Tests check for +cmdwin feature which is always present. Solution: Remove the checks. (closes https://github.com/vim/vim/issues/11287)
author Bram Moolenaar <Bram@vim.org>
date Wed, 05 Oct 2022 12:30:04 +0200
parents c684e9381495
children 2606fcb01157
comparison
equal deleted inserted replaced
30656:c34ca163ed25 30657:ac908e454519
585 call delete('.c.swp') 585 call delete('.c.swp')
586 endfunc 586 endfunc
587 587
588 " Test for ":all" not working when in the cmdline window 588 " Test for ":all" not working when in the cmdline window
589 func Test_all_not_allowed_from_cmdwin() 589 func Test_all_not_allowed_from_cmdwin()
590 CheckFeature cmdwin
591
592 au BufEnter * all 590 au BufEnter * all
593 next x 591 next x
594 " Use try/catch here, somehow assert_fails() doesn't work on MS-Windows 592 " Use try/catch here, somehow assert_fails() doesn't work on MS-Windows
595 " console. 593 " console.
596 let caught = 'no' 594 let caught = 'no'