Problem: Vim9: expression test fails without channel support.
Solution: Add has('channel') check.
assert_equal(true, !{})
assert_equal(false, !{'yes': 'no'})
- assert_equal(true, !test_null_job())
- assert_equal(true, !test_null_channel())
+ if has('channel')
+ assert_equal(true, !test_null_job())
+ assert_equal(true, !test_null_channel())
+ endif
assert_equal(true, !test_null_blob())
assert_equal(true, !0z)
static int included_patches[] =
{ /* Add new patch number below this line */
+/**/
+ 300,
/**/
299,
/**/