1
0
forked from aniani/vim

patch 8.2.4884: test fails without the job/channel feature

Problem:    Test fails without the job/channel feature. (Dominique Pellé)
Solution:   Add condition.
This commit is contained in:
Bram Moolenaar
2022-05-06 13:27:08 +01:00
parent 2eaef106e4
commit 175913fb03
2 changed files with 6 additions and 2 deletions

View File

@@ -4199,8 +4199,10 @@ def Test_echo_uninit_variables()
var Var_func: func
var var_string: string
var var_blob: blob
var var_job: job
var var_channel: channel
if has('job')
var var_job: job
var var_channel: channel
endif
var var_list: list<any>
var var_dict: dict<any>