From: Bram Moolenaar Date: Sun, 15 Mar 2020 13:53:35 +0000 (+0100) Subject: patch 8.2.0383: wrong feature check causes test not to be run X-Git-Tag: v8.2.0383 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=4f32f9c90e5710627467d74b415b3dc46fcc593a;p=vim 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 index af767d2c4..2034aecfb 100644 --- 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 index b6b408da3..b7ae44476 100644 --- a/src/version.c +++ b/src/version.c @@ -738,6 +738,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ +/**/ + 383, /**/ 382, /**/