From 018383096c40aca83a76e1ae2a3ba8c5aac9b9af Mon Sep 17 00:00:00 2001 From: James McCoy Date: Sun, 4 Jun 2017 22:09:19 -0400 Subject: [PATCH] oldtests: Fix syntax of s:flaky --- src/nvim/testdir/runtest.vim | 4 ++-- 1 file 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.