Mercurial > vim
changeset 22892:d3afe009826a v8.2.1993
patch 8.2.1993: occasional failure of the netbeans test
Commit: https://github.com/vim/vim/commit/50dc3ecc642ee88348cb353cf85d08eac26c75dd
Author: Bram Moolenaar <Bram@vim.org>
Date: Mon Nov 16 18:39:43 2020 +0100
patch 8.2.1993: occasional failure of the netbeans test
Problem: Occasional failure of the netbeans test.
Solution: Add "silent!". (Yegappan Lakshmanan, closes https://github.com/vim/vim/issues/7304)
author | Bram Moolenaar <Bram@vim.org> |
---|---|
date | Mon, 16 Nov 2020 18:45:04 +0100 |
parents | 2cf73a41bf09 |
children | 53e574842235 |
files | src/testdir/test_netbeans.vim src/version.c |
diffstat | 2 files changed, 4 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- a/src/testdir/test_netbeans.vim +++ b/src/testdir/test_netbeans.vim @@ -36,7 +36,7 @@ func ReadXnetbeans() let l = readfile("Xnetbeans") " Xnetbeans may include '0:geometry=' messages in the GUI Vim if the window " position, size, or z order are changed. Remove these messages because - " these message will break the assert for the output. + " these messages will break the assert for the output. return filter(l, 'v:val !~ "^0:geometry="') endfunc @@ -927,7 +927,7 @@ endfunc " error. func Test_nb_bwipe_buffer() call s:run_server('Nb_bwipe_buffer') - %bwipe! + silent! %bwipe! sleep 100m nbclose endfunc