From 484dee38e665e20f961b18f27a82b3224341c1be Mon Sep 17 00:00:00 2001 From: Serhiy Storchaka Date: Thu, 21 Feb 2013 14:33:45 +0200 Subject: Issue #17248: Fix os.*chown() testing when user is in root group. --- Lib/test/test_posix.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Lib/test/test_posix.py b/Lib/test/test_posix.py index 073e069..b0a8cdf 100644 --- a/Lib/test/test_posix.py +++ b/Lib/test/test_posix.py @@ -271,7 +271,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 -- cgit v0.12