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
parent 4f9842ad80
commit 96e1fd480d
1 changed files with 1 additions and 1 deletions

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))