comparison src/testdir/test_regexp_latin.vim @ 31849:dbec60b8c253 v9.0.1257

patch 9.0.1257: code style is not check in test scripts Commit: https://github.com/vim/vim/commit/94722c510745a0cfd494c51625a514b92dd2bfb2 Author: Bram Moolenaar <Bram@vim.org> Date: Sat Jan 28 19:19:03 2023 +0000 patch 9.0.1257: code style is not check in test scripts Problem: Code style is not check in test scripts. Solution: Add basic code style check for test files.
author Bram Moolenaar <Bram@vim.org>
date Sat, 28 Jan 2023 20:30:04 +0100
parents d58331e0f14a
children df52075b12cd
comparison
equal deleted inserted replaced
31848:b83cac410fcf 31849:dbec60b8c253
1147 def Test_compare_column_matchstr() 1147 def Test_compare_column_matchstr()
1148 # do some search in text to set the line number, it should be ignored in 1148 # do some search in text to set the line number, it should be ignored in
1149 # matchstr(). 1149 # matchstr().
1150 enew 1150 enew
1151 setline(1, ['one', 'two', 'three']) 1151 setline(1, ['one', 'two', 'three'])
1152 :3 1152 :3
1153 :/ee 1153 :/ee
1154 bwipe! 1154 bwipe!
1155 set re=1 1155 set re=1
1156 call assert_equal('aaa', matchstr('aaaaaaaaaaaaaaaaaaaa', '.*\%<5v')) 1156 call assert_equal('aaa', matchstr('aaaaaaaaaaaaaaaaaaaa', '.*\%<5v'))
1157 set re=2 1157 set re=2