Fix hardcoded value in test_os.py (#4744)

This commit is contained in:
Pablo Galindo 2017-12-07 06:55:44 +00:00 committed by Victor Stinner
parent 9ab11b3a02
commit fb77e0d855
1 changed files with 1 additions and 1 deletions

View File

@ -1321,7 +1321,7 @@ class URandomTests(unittest.TestCase):
'sys.stdout.buffer.flush()'))
out = assert_python_ok('-c', code)
stdout = out[1]
self.assertEqual(len(stdout), 16)
self.assertEqual(len(stdout), count)
return stdout
def test_urandom_subprocess(self):