diff options
| author | Paul Sokolovsky | 2014-04-07 02:52:45 +0300 |
|---|---|---|
| committer | Paul Sokolovsky | 2014-04-07 02:54:16 +0300 |
| commit | bd6f3d31d2a78bbcfeabcf9f358797020de9b93e (patch) | |
| tree | 02632a8c04a8afd95bde837dc9d27e75a9a612f1 | |
| parent | 9f043da5c348602df23f9d80d12dd282fe5981fd (diff) | |
tests: Fix few tests which depend on order of elements in set.
| -rw-r--r-- | tests/basics/set_union.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/basics/set_union.py b/tests/basics/set_union.py index 2adcc972c..572d12f66 100644 --- a/tests/basics/set_union.py +++ b/tests/basics/set_union.py @@ -1 +1 @@ -print({1}.union({2})) +print(sorted({1}.union({2}))) |
