# HG changeset patch # User Bram Moolenaar # Date 1581111003 -3600 # Node ID 77794a1d7e98d9b8dc0fe8f44c9d33a533fe9ac5 # Parent 0877d4295ae1008a817d0bd4b9c3593e7fefe5c4 patch 8.2.0230: terminal popup test is flaky Commit: https://github.com/vim/vim/commit/670218839aef105e83f8effaa1c83100c61c7bcf Author: Bram Moolenaar Date: Fri Feb 7 22:20:53 2020 +0100 patch 8.2.0230: terminal popup test is flaky Problem: Terminal popup test is flaky. Solution: Increase wait time a bit. diff --git a/src/testdir/test_terminal.vim b/src/testdir/test_terminal.vim --- a/src/testdir/test_terminal.vim +++ b/src/testdir/test_terminal.vim @@ -2362,7 +2362,7 @@ func Test_terminal_in_popup() call term_sendkeys(buf, "\:call HidePopup()\") call VerifyScreenDump(buf, 'Test_terminal_popup_4', {}) call term_sendkeys(buf, "\") - call term_wait(buf, 50) + call term_wait(buf, 100) call term_sendkeys(buf, ":q\") call term_wait(buf, 100) " wait for terminal to vanish 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 */ /**/ + 230, +/**/ 229, /**/ 228,