File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -814,8 +814,12 @@ func Test_python_vim_bindeval()
814814 call assert_equal (v: none , pyeval (" vim.bindeval('v:none')" ))
815815
816816 " channel/job
817- call assert_equal (v: none , pyeval (" vim.bindeval('test_null_channel()')" ))
818- call assert_equal (v: none , pyeval (" vim.bindeval('test_null_job()')" ))
817+ if has (' channel' )
818+ call assert_equal (v: none , pyeval (" vim.bindeval('test_null_channel()')" ))
819+ endif
820+ if has (' job' )
821+ call assert_equal (v: none , pyeval (" vim.bindeval('test_null_job()')" ))
822+ endif
819823endfunc
820824
821825" threading
Original file line number Diff line number Diff line change @@ -1007,8 +1007,12 @@ func Test_python3_vim_bindeval()
10071007 call assert_equal (v: none , py3eval (" vim.bindeval('v:none')" ))
10081008
10091009 " channel/job
1010- call assert_equal (v: none , py3eval (" vim.bindeval('test_null_channel()')" ))
1011- call assert_equal (v: none , py3eval (" vim.bindeval('test_null_job()')" ))
1010+ if has (' channel' )
1011+ call assert_equal (v: none , py3eval (" vim.bindeval('test_null_channel()')" ))
1012+ endif
1013+ if has (' job' )
1014+ call assert_equal (v: none , py3eval (" vim.bindeval('test_null_job()')" ))
1015+ endif
10121016endfunc
10131017
10141018" threading
Original file line number Diff line number Diff line change @@ -750,6 +750,8 @@ static char *(features[]) =
750750
751751static int included_patches [] =
752752{ /* Add new patch number below this line */
753+ /**/
754+ 2872 ,
753755/**/
754756 2871 ,
755757/**/
You can’t perform that action at this time.
0 commit comments