mirror of
https://github.com/vim/vim.git
synced 2025-09-24 03:44:06 -04:00
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.
This commit is contained in:
@@ -53,7 +53,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')
|
||||||
|
@@ -761,6 +761,8 @@ static char *(features[]) =
|
|||||||
|
|
||||||
static int included_patches[] =
|
static int included_patches[] =
|
||||||
{ /* Add new patch number below this line */
|
{ /* Add new patch number below this line */
|
||||||
|
/**/
|
||||||
|
1265,
|
||||||
/**/
|
/**/
|
||||||
1264,
|
1264,
|
||||||
/**/
|
/**/
|
||||||
|
Reference in New Issue
Block a user