# HG changeset patch # User Bram Moolenaar # Date 1580986804 -3600 # Node ID 276e24e916d55788012c818a34aa1b816c9014eb # Parent af8116c90200eddaa2d5b723fdd9838ca0ab651e patch 8.2.0220: terminal test did pass on Mac Commit: https://github.com/vim/vim/commit/1af5ce01c333ed8be57f15dd7ba7846ac4760810 Author: Bram Moolenaar Date: Thu Feb 6 11:54:35 2020 +0100 patch 8.2.0220: terminal test did pass on Mac Problem: Terminal test did pass on Mac. Solution: Remove the skip again. 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 @@ -2359,12 +2359,10 @@ func Test_terminal_in_popup() call term_sendkeys(buf, "/edit\") call VerifyScreenDump(buf, 'Test_terminal_popup_3', {}) - " TODO: somehow this causes the job to keep running on Mac - if !has('mac') - call term_sendkeys(buf, "\:call HidePopup()\") - call VerifyScreenDump(buf, 'Test_terminal_popup_4', {}) - call term_sendkeys(buf, "\") - endif + call term_sendkeys(buf, "\:call HidePopup()\") + call VerifyScreenDump(buf, 'Test_terminal_popup_4', {}) + call term_sendkeys(buf, "\") + call term_wait(buf, 50) 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 */ /**/ + 220, +/**/ 219, /**/ 218,