From 64976e74af6a1ad11381f7688d5bf80aad65bc73 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Walter=20D=C3=B6rwald?= Date: Tue, 15 Apr 2003 16:08:01 +0000 Subject: [PATCH] Fix copy & paste error in comment. --- Lib/test/test_grp.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Lib/test/test_grp.py b/Lib/test/test_grp.py index f27ef8cf1e5..71c489762b1 100755 --- a/Lib/test/test_grp.py +++ b/Lib/test/test_grp.py @@ -26,7 +26,7 @@ def test_values(self): # The following won't work, because of duplicate entries # for one gid # self.assertEqual(grp.getgrgid(e.gr_gid), e) - # instead of this collect all entries for one uid + # instead of this collect all entries for one gid # and check afterwards entriesbygid.setdefault(e.gr_gid, []).append(e)