Commit 064deea5 authored by Walter Dörwald's avatar Walter Dörwald

Fix copy & paste error in comment.

parent 37de35e0
...@@ -26,7 +26,7 @@ class GroupDatabaseTestCase(unittest.TestCase): ...@@ -26,7 +26,7 @@ class GroupDatabaseTestCase(unittest.TestCase):
# The following won't work, because of duplicate entries # The following won't work, because of duplicate entries
# for one gid # for one gid
# self.assertEqual(grp.getgrgid(e.gr_gid), e) # 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 # and check afterwards
entriesbygid.setdefault(e.gr_gid, []).append(e) entriesbygid.setdefault(e.gr_gid, []).append(e)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment