# HG changeset patch # User Christian Brabandt # Date 1509831004 -3600 # Node ID bda267b9fc68c5241fe1605bdc5764127d9d1f96 # Parent dc6864c4508b682922789a5d32533eab6c7990fa patch 8.0.1265: swap test not skipped when there is one group commit https://github.com/vim/vim/commit/ad7dac85c3c90893e78e5463ca44b874082b482f Author: Bram Moolenaar Date: Sat Nov 4 22:21:21 2017 +0100 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. diff --git a/src/testdir/test_swap.vim b/src/testdir/test_swap.vim --- 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 --- a/src/version.c +++ b/src/version.c @@ -762,6 +762,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ /**/ + 1265, +/**/ 1264, /**/ 1263,