mirror of
https://github.com/samsonjs/vdirsyncer.git
synced 2026-03-31 09:55:55 +00:00
Remove assertion of order.
This commit is contained in:
parent
fc5cbe11fe
commit
ef1f4fd875
1 changed files with 3 additions and 3 deletions
|
|
@ -217,7 +217,7 @@ def test_no_uids():
|
|||
status = {}
|
||||
sync(a, b, status)
|
||||
|
||||
a_items = [a.get(href)[0].raw for href, etag in a.list()]
|
||||
b_items = [b.get(href)[0].raw for href, etag in b.list()]
|
||||
a_items = set(a.get(href)[0].raw for href, etag in a.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'}
|
||||
|
|
|
|||
Loading…
Reference in a new issue