Skip to content

Commit

Permalink
Update tests
Browse files Browse the repository at this point in the history
  • Loading branch information
martinrusev committed Jul 10, 2015
1 parent 61513c9 commit 9f582ee
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/tests.py
Expand Up @@ -47,7 +47,7 @@ def test_items():
redis_session['item1'], redis_session['item2'] = 1, 2
redis_session.save()
# Python 3.*
eq_(list(redis_session.items()), [('item2', 2), ('item1', 1)])
eq_(set(list(redis_session.items())), set([('item2', 2), ('item1', 1)]))


def test_expiry():
Expand Down

0 comments on commit 9f582ee

Please sign in to comment.