mirror of
https://github.com/python/cpython.git
synced 2025-08-30 13:38:43 +00:00
Fix hardcoded value in test_os.py (#4744)
This commit is contained in:
parent
9ab11b3a02
commit
fb77e0d855
1 changed files with 1 additions and 1 deletions
|
@ -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…
Add table
Add a link
Reference in a new issue