summaryrefslogtreecommitdiffstats
path: root/src/testdir/runtest.vim
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2020-07-27 20:02:41 +0200
committerBram Moolenaar <Bram@vim.org>2020-07-27 20:02:41 +0200
commit622b3568fa1baf07671d31390815fb0a55a99891 (patch)
treebf3b4666404b49c91e95ee2e938e99ecc8a6d3ca /src/testdir/runtest.vim
parent6ca6ca48898750dd55cad13c88a9c1dfd7fdaad5 (diff)
patch 8.2.1305: some tests are still old stylev8.2.1305
Problem: Some tests are still old style. Solution: Convert tests 52 and 70 to new style. (Yegappan Lakshmanan, closes #6544) Fix error in FinishTesting().
Diffstat (limited to 'src/testdir/runtest.vim')
-rw-r--r--src/testdir/runtest.vim2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/testdir/runtest.vim b/src/testdir/runtest.vim
index 6cc7202dc7..e42b0cabdb 100644
--- a/src/testdir/runtest.vim
+++ b/src/testdir/runtest.vim
@@ -447,7 +447,7 @@ for g:testfunc in sort(s:tests)
" - it fails again with the same message
" - it fails five times (with a different message)
if len(v:errors) > 0
- \ $TEST_NO_RETRY == ''
+ \ && $TEST_NO_RETRY == ''
\ && (index(s:flaky_tests, g:testfunc) >= 0
\ || g:test_is_flaky)
while 1