mirror of
https://github.com/samsonjs/vdirsyncer.git
synced 2026-04-27 14:57:41 +00:00
Clean up set comparison
This commit is contained in:
parent
ca5a9cd8f9
commit
3b6a2f3664
1 changed files with 1 additions and 1 deletions
|
|
@ -162,7 +162,7 @@ class SupportsCollections(object):
|
||||||
**get_storage_args(collection=None))
|
**get_storage_args(collection=None))
|
||||||
|
|
||||||
actual = set(s.collection for s in d)
|
actual = set(s.collection for s in d)
|
||||||
assert not expected - actual
|
assert actual >= expected
|
||||||
|
|
||||||
def test_discover_collection_arg(self, get_storage_args):
|
def test_discover_collection_arg(self, get_storage_args):
|
||||||
args = get_storage_args(collection='test2')
|
args = get_storage_args(collection='test2')
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue