зеркало из https://github.com/mozilla/gecko-dev.git
Bug 1547730 - Fix b''.join(rand.choice(bytestring)..) to use bytes() constructor instead r=glandium
Differential Revision: https://phabricator.services.mozilla.com/D28107 --HG-- extra : moz-landing-system : lando
This commit is contained in:
Родитель
043346856b
Коммит
5045a4b86c
|
@ -163,9 +163,8 @@ class TestDest(TestWithTmpDir):
|
|||
self.assertEqual(dest.read(), 'qux')
|
||||
|
||||
|
||||
rand = b''.join(random.choice(
|
||||
b'abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ')
|
||||
for i in six.moves.xrange(131597))
|
||||
rand = bytes(random.choice(b'abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ')
|
||||
for i in six.moves.xrange(131597))
|
||||
samples = [
|
||||
b'',
|
||||
b'test',
|
||||
|
|
Загрузка…
Ссылка в новой задаче