diff options
author | Bram Moolenaar <Bram@vim.org> | 2020-11-02 20:04:22 +0100 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2020-11-02 20:04:22 +0100 |
commit | dbfa795d8b66c99ee758b132d6043871b9061563 (patch) | |
tree | fea9c89a4b0fd254da72c2dd9a245ae914c2a2de /src/testdir/test_quickfix.vim | |
parent | 399db046ed7cc64b68ffa68b543c1b1c20baeee3 (diff) | |
download | vim-git-dbfa795d8b66c99ee758b132d6043871b9061563.tar.gz |
patch 8.2.1942: insufficient test coverage for the Netbeans interfacev8.2.1942
Problem: Insufficient test coverage for the Netbeans interface.
Solution: Add more tests. Fix an uncovered bug. (Yegappan Lakshmanan,
closes #7240)
Diffstat (limited to 'src/testdir/test_quickfix.vim')
-rw-r--r-- | src/testdir/test_quickfix.vim | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/testdir/test_quickfix.vim b/src/testdir/test_quickfix.vim index 88eabaa04..196aa1d8d 100644 --- a/src/testdir/test_quickfix.vim +++ b/src/testdir/test_quickfix.vim @@ -3949,6 +3949,10 @@ func Test_lhelpgrep_autocmd() au BufEnter * call setqflist([], 'f') augroup END call assert_fails('helpgrep quickfix', 'E925:') + " run the test with a help window already open + help + wincmd w + call assert_fails('helpgrep quickfix', 'E925:') augroup QF_Test au! BufEnter augroup END |