mirror of https://github.com/python/cpython
Fix hardcoded value in test_os.py (#4744)
This commit is contained in:
parent
9ab11b3a02
commit
fb77e0d855
|
@ -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):
|
||||
|
|
Loading…
Reference in New Issue