From: Zackery Spytz Date: Tue, 14 Apr 2020 18:11:46 +0000 (-0600) Subject: bpo-32033: Fix test_pwd failures on Android (GH-19502) X-Git-Tag: v3.9.0a6~119 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=96515e9f6785328c52ebc5d4ce60e0087a9adc2d;p=thirdparty%2FPython%2Fcpython.git bpo-32033: Fix test_pwd failures on Android (GH-19502) --- diff --git a/Lib/test/test_pwd.py b/Lib/test/test_pwd.py index c13a7c9294f9..85740cecd822 100644 --- a/Lib/test/test_pwd.py +++ b/Lib/test/test_pwd.py @@ -21,7 +21,7 @@ class PwdTest(unittest.TestCase): self.assertEqual(e[3], e.pw_gid) self.assertIsInstance(e.pw_gid, int) self.assertEqual(e[4], e.pw_gecos) - self.assertIsInstance(e.pw_gecos, str) + self.assertIn(type(e.pw_gecos), (str, type(None))) self.assertEqual(e[5], e.pw_dir) self.assertIsInstance(e.pw_dir, str) self.assertEqual(e[6], e.pw_shell)