tests/basics/set_pop.py: Sort set before printing for consistent output.

This commit is contained in:
Damien George 2018-08-17 15:42:51 +10:00 committed by Jeff Epler
parent f47b964c5f
commit 8b5fd95897

View File

@ -15,4 +15,4 @@ while s:
print(s.pop()) # last pop() should trigger the optimisation
for i in range(N):
s.add(i) # check that we can add the numbers back to the set
print(list(s))
print(sorted(s))