mirror of
https://github.com/python/cpython.git
synced 2025-11-01 10:45:30 +00:00
Eat some low hanging fruit... let the test suite run.
This commit is contained in:
parent
ea03c11655
commit
0e6012cbf3
4 changed files with 12 additions and 7 deletions
|
|
@ -16,6 +16,7 @@ except ImportError:
|
|||
|
||||
from .test_all import verbose
|
||||
|
||||
letters = 'abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ'
|
||||
|
||||
#----------------------------------------------------------------------
|
||||
|
||||
|
|
@ -45,7 +46,7 @@ class SimpleQueueTestCase(unittest.TestCase):
|
|||
print("before appends" + '-' * 30)
|
||||
pprint(d.stat())
|
||||
|
||||
for x in string.letters:
|
||||
for x in letters:
|
||||
d.append(x * 40)
|
||||
|
||||
assert len(d) == 52
|
||||
|
|
@ -117,7 +118,7 @@ class SimpleQueueTestCase(unittest.TestCase):
|
|||
print("before appends" + '-' * 30)
|
||||
pprint(d.stat())
|
||||
|
||||
for x in string.letters:
|
||||
for x in letters:
|
||||
d.append(x * 40)
|
||||
|
||||
assert len(d) == 52
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue