diff options
author | Jan Edmund Lazo <jan.lazo@mail.utoronto.ca> | 2019-04-29 20:48:01 -0400 |
---|---|---|
committer | Jan Edmund Lazo <jan.lazo@mail.utoronto.ca> | 2019-04-29 20:48:18 -0400 |
commit | 3a8ebda10ae0acaf59c5af529e868db21282e025 (patch) | |
tree | dffcc0d4cc3461c2c66a17030e492b602de04d16 | |
parent | 0cecf9f121d66539be86fa76bdd7fb9221f54389 (diff) | |
download | rneovim-3a8ebda10ae0acaf59c5af529e868db21282e025.tar.gz rneovim-3a8ebda10ae0acaf59c5af529e868db21282e025.tar.bz2 rneovim-3a8ebda10ae0acaf59c5af529e868db21282e025.zip |
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
-rw-r--r-- | src/nvim/testdir/test_swap.vim | 2 |
1 files changed, 1 insertions, 1 deletions
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') |