c217786
Index: Lib/test/test_posix.py
c217786
===================================================================
c217786
--- Lib/test/test_posix.py	(revision 86871)
c217786
+++ Lib/test/test_posix.py	(working copy)
c217786
@@ -353,7 +353,7 @@
c217786
             def test_setgroups(self):
c217786
                 for groups in [[0], range(16)]:
c217786
                     posix.setgroups(groups)
c217786
-                    self.assertListEqual(groups, posix.getgroups())
c217786
+                    self.assertEqual(groups, posix.getgroups())
c217786
 
c217786
 
c217786
 def test_main():