components/python/python26/patches/Python26-34-test_posix.patch
changeset 1788 7948c9c48347
equal deleted inserted replaced
1787:e27e5d7811bf 1788:7948c9c48347
       
     1 # This patch comes from upstream: http://bugs.python.org/issue10585
       
     2 
       
     3 --- Python-2.6.8/Lib/test/test_posix.py.orig	2012-04-10 08:32:07.000000000 -0700
       
     4 +++ Python-2.6.8/Lib/test/test_posix.py	2014-03-24 14:46:34.624941892 -0700
       
     5 @@ -353,7 +353,7 @@
       
     6              def test_setgroups(self):
       
     7                  for groups in [[0], range(16)]:
       
     8                      posix.setgroups(groups)
       
     9 -                    self.assertListEqual(groups, posix.getgroups())
       
    10 +                    self.assertEqual(groups, posix.getgroups())
       
    11  
       
    12  
       
    13  def test_main():