Skip to content

Commit a60c31b

Browse files
committed
limit lines to 79 characters
1 parent 6f4c605 commit a60c31b

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

Lib/test/test_posix.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1041,7 +1041,8 @@ def test_getgrouplist(self):
10411041

10421042

10431043
@unittest.skipUnless(hasattr(os, 'getegid'), "test needs os.getegid()")
1044-
@unittest.skipUnless(unix_shell and os.path.exists(unix_shell), 'requires a shell')
1044+
@unittest.skipUnless(unix_shell and os.path.exists(unix_shell),
1045+
'requires a shell')
10451046
def test_getgroups(self):
10461047
with os.popen('id -G 2>/dev/null') as idg:
10471048
groups = idg.read().strip()

0 commit comments

Comments
 (0)