From: Serhiy Storchaka Date: Thu, 21 Feb 2013 12:34:36 +0000 (+0200) Subject: Issue #17248: Fix os.*chown() testing when user is in root group. X-Git-Tag: v3.2.4rc1~89 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=a2964b3175b8faba0285ccfbd269411a4893444d;p=thirdparty%2FPython%2Fcpython.git Issue #17248: Fix os.*chown() testing when user is in root group. --- diff --git a/Lib/test/test_posix.py b/Lib/test/test_posix.py index 5a26d649d38f..865209d7c98b 100644 --- a/Lib/test/test_posix.py +++ b/Lib/test/test_posix.py @@ -281,7 +281,7 @@ class PosixTester(unittest.TestCase): check_stat(uid, gid) self.assertRaises(OSError, chown_func, first_param, 0, -1) check_stat(uid, gid) - if gid != 0: + if 0 not in os.getgroups(): self.assertRaises(OSError, chown_func, first_param, -1, 0) check_stat(uid, gid) # test illegal types