We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 680d9bf commit bcc5ef8Copy full SHA for bcc5ef8
Lib/test/test_posix.py
@@ -1030,7 +1030,8 @@ def test_getgrouplist(self):
1030
1031
1032
@unittest.skipUnless(hasattr(os, 'getegid'), "test needs os.getegid()")
1033
- @unittest.skipUnless(unix_shell and os.path.exists(unix_shell), 'requires a shell')
+ @unittest.skipUnless(unix_shell and os.path.exists(unix_shell),
1034
+ 'requires a shell')
1035
def test_getgroups(self):
1036
with os.popen('id -G 2>/dev/null') as idg:
1037
groups = idg.read().strip()
0 commit comments