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:
Daniel Hahler
2019-08-20 08:30:13 +02:00
parent 72f453d149
commit 542fbb34a1

View File

@@ -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])