tests/basics/set_pop.py: Sort set before printing for consistent output.
This commit is contained in:
parent
f47b964c5f
commit
8b5fd95897
@ -15,4 +15,4 @@ while s:
|
|||||||
print(s.pop()) # last pop() should trigger the optimisation
|
print(s.pop()) # last pop() should trigger the optimisation
|
||||||
for i in range(N):
|
for i in range(N):
|
||||||
s.add(i) # check that we can add the numbers back to the set
|
s.add(i) # check that we can add the numbers back to the set
|
||||||
print(list(s))
|
print(sorted(s))
|
||||||
|
Loading…
Reference in New Issue
Block a user