mirror of
https://github.com/neovim/neovim.git
synced 2025-10-09 03:16:31 +00:00
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.
ad7dac85c3
This commit is contained in:
@@ -57,7 +57,7 @@ func Test_swap_group()
|
|||||||
endif
|
endif
|
||||||
let groups = split(system('groups'))
|
let groups = split(system('groups'))
|
||||||
if len(groups) <= 1
|
if len(groups) <= 1
|
||||||
throw 'Skipped: need at least two groups, got ' . groups
|
throw 'Skipped: need at least two groups, got ' . string(groups)
|
||||||
endif
|
endif
|
||||||
|
|
||||||
call delete('Xtest')
|
call delete('Xtest')
|
||||||
|
Reference in New Issue
Block a user