diff src/testdir/test_channel.vim @ 15162:d2ac3f2b44ba v8.1.0591

patch 8.1.0591: channel sort test is flaky commit https://github.com/vim/vim/commit/6c8dd39df938c7502a740f59825feeaa5736b245 Author: Bram Moolenaar <Bram@vim.org> Date: Fri Dec 14 22:42:13 2018 +0100 patch 8.1.0591: channel sort test is flaky Problem: Channel sort test is flaky. Solution: Do not check if the job is running, it may have be done very fast.
author Bram Moolenaar <Bram@vim.org>
date Fri, 14 Dec 2018 22:45:06 +0100
parents 7ad55ed0a4f3
children c73f1fdfb27a
line wrap: on
line diff
--- a/src/testdir/test_channel.vim
+++ b/src/testdir/test_channel.vim
@@ -922,9 +922,9 @@ func Run_pipe_through_sort(all, use_buff
     let options.in_bot = 4
   endif
   let g:job = job_start('sort', options)
-  call assert_equal("run", job_status(g:job))
 
   if !a:use_buffer
+    call assert_equal("run", job_status(g:job))
     call ch_sendraw(g:job, "ccc\naaa\nddd\nbbb\neee\n")
     call ch_close_in(g:job)
   endif