comparison src/testdir/test_matchadd_conceal.vim @ 28798:2dcc6c9eb6e6 v8.2.4923

patch 8.2.4923: test checks for terminal feature unnecessarily Commit: https://github.com/vim/vim/commit/194843028ed486366b89e8f7d3bdd611a11ce7b4 Author: zeertzjq <zeertzjq@outlook.com> Date: Mon May 9 11:03:19 2022 +0100 patch 8.2.4923: test checks for terminal feature unnecessarily Problem: Test checks for terminal feature unnecessarily. Solution: Remove CheckRunVimInTerminal. (closes https://github.com/vim/vim/issues/10383)
author Bram Moolenaar <Bram@vim.org>
date Mon, 09 May 2022 12:15:03 +0200
parents a79f44a2d1ce
children 72245f9c9405
comparison
equal deleted inserted replaced
28797:255df85d2acd 28798:2dcc6c9eb6e6
338 call assert_notequal(screenattr(1, 11) , screenattr(1, 12)) 338 call assert_notequal(screenattr(1, 11) , screenattr(1, 12))
339 call assert_equal(screenattr(1, 11) , screenattr(1, 32)) 339 call assert_equal(screenattr(1, 11) , screenattr(1, 32))
340 endfunc 340 endfunc
341 341
342 func Test_interaction_matchadd_syntax() 342 func Test_interaction_matchadd_syntax()
343 CheckRunVimInTerminal
344
345 new 343 new
346 " Test for issue #7268 fix. 344 " Test for issue #7268 fix.
347 " When redrawing the second column, win_line() was comparing the sequence 345 " When redrawing the second column, win_line() was comparing the sequence
348 " number of the syntax-concealed region with a bogus zero value that was 346 " number of the syntax-concealed region with a bogus zero value that was
349 " returned for the matchadd-concealed region. Before 8.0.0672 the sequence 347 " returned for the matchadd-concealed region. Before 8.0.0672 the sequence