From 3a8ebda10ae0acaf59c5af529e868db21282e025 Mon Sep 17 00:00:00 2001 From: Jan Edmund Lazo Date: Mon, 29 Apr 2019 20:48:01 -0400 Subject: [PATCH] vim-patch:8.0.1265: swap test not skipped when there is one group Problem: Swap test not skipped when there is one group. Solution: Convert list to string for the message. https://github.com/vim/vim/commit/ad7dac85c3c90893e78e5463ca44b874082b482f --- src/nvim/testdir/test_swap.vim | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/nvim/testdir/test_swap.vim b/src/nvim/testdir/test_swap.vim index a2efc8976e..394771effd 100644 --- a/src/nvim/testdir/test_swap.vim +++ b/src/nvim/testdir/test_swap.vim @@ -57,7 +57,7 @@ func Test_swap_group() endif let groups = split(system('groups')) if len(groups) <= 1 - throw 'Skipped: need at least two groups, got ' . groups + throw 'Skipped: need at least two groups, got ' . string(groups) endif call delete('Xtest')