diff options
author | Pablo Galindo <Pablogsal@gmail.com> | 2017-12-07 06:55:44 +0000 |
---|---|---|
committer | Victor Stinner <victor.stinner@gmail.com> | 2017-12-07 07:55:44 +0100 |
commit | fb77e0d855e841f42c3fa504efe79eefca9efafb (patch) | |
tree | e6f60ba8c4aedaff0c2d99e25fd3eacd7bf032c8 | |
parent | 9ab11b3a029fba36c1a7e869be87fb4f31ebcf24 (diff) | |
download | cpython-git-fb77e0d855e841f42c3fa504efe79eefca9efafb.tar.gz |
Fix hardcoded value in test_os.py (#4744)
-rw-r--r-- | Lib/test/test_os.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/test_os.py b/Lib/test/test_os.py index 96ee3ee577..2241256909 100644 --- a/Lib/test/test_os.py +++ b/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): |