# HG changeset patch # User Bram Moolenaar # Date 1584280804 -3600 # Node ID 5ec5427fcedf61ec7c8f9f1916deaa5272f931b6 # Parent 917cf52b09f38e04253e97e5d2052e6ba4fbf108 patch 8.2.0383: wrong feature check causes test not to be run Commit: https://github.com/vim/vim/commit/4f32f9c90e5710627467d74b415b3dc46fcc593a Author: Bram Moolenaar 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) diff --git a/src/testdir/test_channel.vim b/src/testdir/test_channel.vim --- a/src/testdir/test_channel.vim +++ b/src/testdir/test_channel.vim @@ -1775,7 +1775,7 @@ endfunc func Test_job_start_in_timer() CheckFeature timers - CheckFeature reltimefloat + CheckFunction reltimefloat func OutCb(chan, msg) let g:val += 1 diff --git a/src/version.c b/src/version.c --- a/src/version.c +++ b/src/version.c @@ -739,6 +739,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ /**/ + 383, +/**/ 382, /**/ 381,