From ad7dac85c3c90893e78e5463ca44b874082b482f Mon Sep 17 00:00:00 2001 From: Bram Moolenaar Date: Sat, 4 Nov 2017 22:21:21 +0100 Subject: [PATCH] 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. --- src/testdir/test_swap.vim | 2 +- src/version.c | 2 ++ 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/src/testdir/test_swap.vim b/src/testdir/test_swap.vim index d11c124d0..457edf685 100644 --- a/src/testdir/test_swap.vim +++ b/src/testdir/test_swap.vim @@ -53,7 +53,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') diff --git a/src/version.c b/src/version.c index e83549c98..78b58115d 100644 --- a/src/version.c +++ b/src/version.c @@ -761,6 +761,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ +/**/ + 1265, /**/ 1264, /**/ -- 2.50.1