Skip to content

Commit fb77e0d

Browse files
pablogsalvstinner
authored andcommitted
Fix hardcoded value in test_os.py (#4744)
1 parent 9ab11b3 commit fb77e0d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Lib/test/test_os.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1321,7 +1321,7 @@ def get_urandom_subprocess(self, count):
13211321
'sys.stdout.buffer.flush()'))
13221322
out = assert_python_ok('-c', code)
13231323
stdout = out[1]
1324-
self.assertEqual(len(stdout), 16)
1324+
self.assertEqual(len(stdout), count)
13251325
return stdout
13261326

13271327
def test_urandom_subprocess(self):

0 commit comments

Comments
 (0)