summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2022-09-25 18:44:03 +0100
committerBram Moolenaar <Bram@vim.org>2022-09-25 18:44:03 +0100
commit124af71a28a633fa655cff41bc21d398481ce45f (patch)
tree3c01b9ebbad188816b8e5d316e962f206272178b /src
parent6a879878f4e1918a05244e6acd4c73c3135cf941 (diff)
downloadvim-git-124af71a28a633fa655cff41bc21d398481ce45f.tar.gz
patch 9.0.0586: missing change in testv9.0.0586
Problem: Missing change in test. Solution: Add the test change.
Diffstat (limited to 'src')
-rw-r--r--src/testdir/test_messages.vim7
-rw-r--r--src/version.c2
2 files changed, 5 insertions, 4 deletions
diff --git a/src/testdir/test_messages.vim b/src/testdir/test_messages.vim
index a92a58015..0100ba97e 100644
--- a/src/testdir/test_messages.vim
+++ b/src/testdir/test_messages.vim
@@ -365,15 +365,14 @@ func Test_quit_long_message()
let content =<< trim END
echom range(9999)->join("\x01")
END
- call writefile(content, 'Xtest_quit_message')
- let buf = RunVimInTerminal('-S Xtest_quit_message', #{rows: 6, wait_for_ruler: 0})
- call WaitForAssert({-> assert_match('^-- More --', term_getline(buf, 6))})
+ call writefile(content, 'Xtest_quit_message', 'D')
+ let buf = RunVimInTerminal('-S Xtest_quit_message', #{rows: 10, wait_for_ruler: 0})
+ call WaitForAssert({-> assert_match('^-- More --', term_getline(buf, 10))})
call term_sendkeys(buf, "q")
call VerifyScreenDump(buf, 'Test_quit_long_message', {})
" clean up
call StopVimInTerminal(buf)
- call delete('Xtest_quit_message')
endfunc
" this was missing a terminating NUL
diff --git a/src/version.c b/src/version.c
index 22e54241b..30fe48d9d 100644
--- a/src/version.c
+++ b/src/version.c
@@ -700,6 +700,8 @@ static char *(features[]) =
static int included_patches[] =
{ /* Add new patch number below this line */
/**/
+ 586,
+/**/
585,
/**/
584,