comparison src/testdir/test_messages.vim @ 19083:82410cbaa042 v8.2.0102

patch 8.2.0102: messages test fails in small version Commit: https://github.com/vim/vim/commit/da292b07afb7ea5ec9f4b43a7326551922e29f3a Author: Bram Moolenaar <Bram@vim.org> Date: Wed Jan 8 19:27:40 2020 +0100 patch 8.2.0102: messages test fails in small version Problem: Messages test fails in small version. Solution: Only use test_null_job() when available.
author Bram Moolenaar <Bram@vim.org>
date Wed, 08 Jan 2020 19:30:04 +0100
parents 3b1f83fdaabc
children 25cb7ab433c6
comparison
equal deleted inserted replaced
19082:f2910735ba83 19083:82410cbaa042
271 271
272 func Test_null() 272 func Test_null()
273 echom test_null_list() 273 echom test_null_list()
274 echom test_null_dict() 274 echom test_null_dict()
275 echom test_null_blob() 275 echom test_null_blob()
276 echom test_null_job()
277 echom test_null_string() 276 echom test_null_string()
278 echom test_null_channel()
279 echom test_null_partial() 277 echom test_null_partial()
280 endfunc 278 if has('job')
279 echom test_null_job()
280 echom test_null_channel()
281 endif
282 endfunc