summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_grp.py
diff options
context:
space:
mode:
authorWalter Dörwald <walter@livinglogic.de>2003-04-15 16:08:01 (GMT)
committerWalter Dörwald <walter@livinglogic.de>2003-04-15 16:08:01 (GMT)
commit64976e74af6a1ad11381f7688d5bf80aad65bc73 (patch)
treefddd285600d90ec9e6fa43a256799026586e0425 /Lib/test/test_grp.py
parent43bc1f18dbf18b9a7639f0933b829cf83d05c382 (diff)
downloadcpython-64976e74af6a1ad11381f7688d5bf80aad65bc73.zip
cpython-64976e74af6a1ad11381f7688d5bf80aad65bc73.tar.gz
cpython-64976e74af6a1ad11381f7688d5bf80aad65bc73.tar.bz2
Fix copy & paste error in comment.
Diffstat (limited to 'Lib/test/test_grp.py')
-rwxr-xr-xLib/test/test_grp.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/test_grp.py b/Lib/test/test_grp.py
index f27ef8c..71c4897 100755
--- a/Lib/test/test_grp.py
+++ b/Lib/test/test_grp.py
@@ -26,7 +26,7 @@ class GroupDatabaseTestCase(unittest.TestCase):
# 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)