comparison src/testdir/test_channel.vim @ 19653:5ec5427fcedf v8.2.0383

patch 8.2.0383: wrong feature check causes test not to be run Commit: https://github.com/vim/vim/commit/4f32f9c90e5710627467d74b415b3dc46fcc593a Author: Bram Moolenaar <Bram@vim.org> Date: Sun Mar 15 14:53:35 2020 +0100 patch 8.2.0383: wrong feature check causes test not to be run Problem: Wrong feature check causes test not to be run. Solution: Use CheckFunction instead of CheckFeature. (Ozaki Kiichi, closes #5781)
author Bram Moolenaar <Bram@vim.org>
date Sun, 15 Mar 2020 15:00:04 +0100
parents 283c8bc6a8e2
children 8744a50560cb
comparison
equal deleted inserted replaced
19652:917cf52b09f3 19653:5ec5427fcedf
1773 call job_stop(job) 1773 call job_stop(job)
1774 endfunc 1774 endfunc
1775 1775
1776 func Test_job_start_in_timer() 1776 func Test_job_start_in_timer()
1777 CheckFeature timers 1777 CheckFeature timers
1778 CheckFeature reltimefloat 1778 CheckFunction reltimefloat
1779 1779
1780 func OutCb(chan, msg) 1780 func OutCb(chan, msg)
1781 let g:val += 1 1781 let g:val += 1
1782 endfunc 1782 endfunc
1783 1783