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
index d11c124..457edf6 100644
--- a/src/testdir/test_swap.vim
+++ b/src/testdir/test_swap.vim
@@ -53,7 +53,7 @@
   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')