]> granicus.if.org Git - python/commitdiff
Change test_values so that it compares the lowercasing of group names since getgrall...
authorBrett Cannon <bcannon@gmail.com>
Thu, 25 May 2006 21:33:11 +0000 (21:33 +0000)
committerBrett Cannon <bcannon@gmail.com>
Thu, 25 May 2006 21:33:11 +0000 (21:33 +0000)
Discovered on Ubuntu 5.04 (custom).

Lib/test/test_grp.py

index 2c3ab296a8b765d053d69498f80e170331da9b5c..08958ba0716a84f73ca92117823445203a91dcae 100755 (executable)
@@ -31,7 +31,10 @@ class GroupDatabaseTestCase(unittest.TestCase):
             self.assertEqual(e2.gr_gid, e.gr_gid)
             e2 = grp.getgrnam(e.gr_name)
             self.check_value(e2)
-            self.assertEqual(e2.gr_name, e.gr_name)
+            # There are instances where getgrall() returns group names in
+            # lowercase while getgrgid() returns proper casing.
+            # Discovered on Ubuntu 5.04 (custom).
+            self.assertEqual(e2.gr_name.lower(), e.gr_name.lower())
 
     def test_errors(self):
         self.assertRaises(TypeError, grp.getgrgid)