summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2020-03-15 14:53:35 +0100
committerBram Moolenaar <Bram@vim.org>2020-03-15 14:53:35 +0100
commit4f32f9c90e5710627467d74b415b3dc46fcc593a (patch)
treef5f8ece71c943765657fbea2739eb724cec40816
parent353c351bd22e4dac4c3ae9cd7731032348f248c4 (diff)
patch 8.2.0383: wrong feature check causes test not to be runv8.2.0383
Problem: Wrong feature check causes test not to be run. Solution: Use CheckFunction instead of CheckFeature. (Ozaki Kiichi, closes #5781)
-rw-r--r--src/testdir/test_channel.vim2
-rw-r--r--src/version.c2
2 files changed, 3 insertions, 1 deletions
diff --git a/src/testdir/test_channel.vim b/src/testdir/test_channel.vim
index af767d2c40..2034aecfba 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 b6b408da37..b7ae44476d 100644
--- 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,