runtest.vim: Fix spelling of s:flaky

This commit is contained in:
James McCoy 2016-09-23 14:39:10 -04:00
parent b9da0bd2c5
commit 54d41ff049

View File

@ -108,7 +108,7 @@ endif
for s:test in sort(s:tests)
call RunTheTest(s:test)
if len(v:errors) > 0 && index(flaky, s:test) >= 0
if len(v:errors) > 0 && index(s:flaky, s:test) >= 0
call add(s:messages, 'Flaky test failed, running it again')
let v:errors = []
call RunTheTest(s:test)