We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent acd4c5e commit b2b218dCopy full SHA for b2b218d
2 files changed
src/testdir/test_popupwin.vim
@@ -2454,10 +2454,9 @@ func Test_popupwin_terminal_buffer()
2454
call term_sendkeys(termbuf2, "exit\<CR>")
2455
2456
" Exiting shell closes popup window
2457
- let pupwin = win_getid()
2458
call feedkeys("exit\<CR>", 'xt')
2459
" Wait for shell to exit
2460
- call WaitForAssert({-> assert_notequal(pupwin, win_getid())})
+ call WaitForAssert({-> assert_equal("dead", job_status(term_getjob(termbuf)))})
2461
2462
call feedkeys(":quit\<CR>", 'xt')
2463
call assert_equal(origwin, win_getid())
src/version.c
@@ -754,6 +754,8 @@ static char *(features[]) =
754
755
static int included_patches[] =
756
{ /* Add new patch number below this line */
757
+/**/
758
+ 1038,
759
/**/
760
1037,
761
0 commit comments