mirror of
https://github.com/vim/vim.git
synced 2025-07-26 11:04:33 -04:00
patch 9.0.1386: options test fails with some window width
Problem: Options test fails with some window width. Solution: Adjust what text the test checks with. (closes #12111)
This commit is contained in:
parent
f86dea8119
commit
30585e03a7
@ -2526,8 +2526,11 @@ func Test_normal33_g_cmd2()
|
||||
norm! g'a
|
||||
call assert_equal('>', a[-1:])
|
||||
call assert_equal(1, line('.'))
|
||||
let v:errmsg = ''
|
||||
call assert_nobeep("normal! g`\<Esc>")
|
||||
call assert_equal('', v:errmsg)
|
||||
call assert_nobeep("normal! g'\<Esc>")
|
||||
call assert_equal('', v:errmsg)
|
||||
|
||||
" Test for g; and g,
|
||||
norm! g;
|
||||
|
@ -1058,8 +1058,9 @@ func Test_debug_option()
|
||||
exe "normal \<C-c>"
|
||||
call assert_equal('Beep!', Screenline(&lines))
|
||||
call assert_equal('line 4:', Screenline(&lines - 1))
|
||||
" only match the final colon in the line that shows the source
|
||||
call assert_match(':$', Screenline(&lines - 2))
|
||||
" also check a line above, with a certain window width the colon is there
|
||||
call assert_match('Test_debug_option:$',
|
||||
\ Screenline(&lines - 3) .. Screenline(&lines - 2))
|
||||
set debug&
|
||||
endfunc
|
||||
|
||||
|
@ -695,6 +695,8 @@ static char *(features[]) =
|
||||
|
||||
static int included_patches[] =
|
||||
{ /* Add new patch number below this line */
|
||||
/**/
|
||||
1386,
|
||||
/**/
|
||||
1385,
|
||||
/**/
|
||||
|
Loading…
x
Reference in New Issue
Block a user