mirror of
https://github.com/neovim/neovim.git
synced 2025-10-17 15:21:47 +00:00
vim-patch:8.1.1488: summary of tests has incorrect failed count
Problem: Summary of tests has incorrect failed count.
Solution: Add to the failed count instead of setting it. (Christian Brabandt)
150f0550f4
This commit is contained in:
@@ -5,7 +5,7 @@ if 1
|
||||
if a:type ==# 'executed'
|
||||
let g:executed += (a:match+0)
|
||||
elseif a:type ==# 'failed'
|
||||
let g:failed = a:match+0
|
||||
let g:failed += a:match+0
|
||||
elseif a:type ==# 'skipped'
|
||||
let g:skipped += 1
|
||||
call extend(g:skipped_output, ["\t".a:match])
|
||||
|
Reference in New Issue
Block a user