Skip to content

Commit bcc5ef8

Browse files
committed
limit lines to 79 characters
1 parent 680d9bf commit bcc5ef8

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
@@ -1030,7 +1030,8 @@ def test_getgrouplist(self):
10301030

10311031

10321032
@unittest.skipUnless(hasattr(os, 'getegid'), "test needs os.getegid()")
1033-
@unittest.skipUnless(unix_shell and os.path.exists(unix_shell), 'requires a shell')
1033+
@unittest.skipUnless(unix_shell and os.path.exists(unix_shell),
1034+
'requires a shell')
10341035
def test_getgroups(self):
10351036
with os.popen('id -G 2>/dev/null') as idg:
10361037
groups = idg.read().strip()

0 commit comments

Comments
 (0)