aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJames McCoy <jamessan@jamessan.com>2017-06-04 22:09:19 -0400
committerJames McCoy <jamessan@jamessan.com>2017-06-04 22:09:19 -0400
commit018383096c40aca83a76e1ae2a3ba8c5aac9b9af (patch)
treedebb3b057aed0afb885ac477c4875637bcd1127f
parent1b2acb8d958c1c8e2f382c2de9c98586801fd9fe (diff)
downloadrneovim-018383096c40aca83a76e1ae2a3ba8c5aac9b9af.tar.gz
rneovim-018383096c40aca83a76e1ae2a3ba8c5aac9b9af.tar.bz2
rneovim-018383096c40aca83a76e1ae2a3ba8c5aac9b9af.zip
oldtests: Fix syntax of s:flaky
-rw-r--r--src/nvim/testdir/runtest.vim4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/nvim/testdir/runtest.vim b/src/nvim/testdir/runtest.vim
index 732b0aaf74..d87c12147e 100644
--- a/src/nvim/testdir/runtest.vim
+++ b/src/nvim/testdir/runtest.vim
@@ -136,8 +136,8 @@ endif
" Names of flaky tests.
let s:flaky = [
\ 'Test_with_partial_callback()',
- \ 'Test_oneshot()'
- \ 'Test_lambda_with_timer()'
+ \ 'Test_oneshot()',
+ \ 'Test_lambda_with_timer()',
\ ]
" Locate Test_ functions and execute them.