Browse Source

Fix hardcoded value in test_os.py (#4744)

pull/4149/head
Pablo Galindo 8 years ago
committed by Victor Stinner
parent
commit
fb77e0d855
  1. 2
      Lib/test/test_os.py

2
Lib/test/test_os.py

@ -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…
Cancel
Save