Remove assertion of order.

This commit is contained in:
Markus Unterwaditzer 2014-05-14 16:23:39 +02:00
parent fc5cbe11fe
commit ef1f4fd875

View file

@ -217,7 +217,7 @@ def test_no_uids():
status = {} status = {}
sync(a, b, status) sync(a, b, status)
a_items = [a.get(href)[0].raw for href, etag in a.list()] a_items = set(a.get(href)[0].raw for href, etag in a.list())
b_items = [b.get(href)[0].raw for href, etag in b.list()] b_items = set(b.get(href)[0].raw for href, etag in b.list())
assert a_items == b_items == [u'ASDF', u'FOOBAR'] assert a_items == b_items == {u'ASDF', u'FOOBAR'}