mirror of
https://github.com/samsonjs/vdirsyncer.git
synced 2026-04-27 14:57:41 +00:00
This doesn't work very well if there's a collection called "test".
This commit is contained in:
parent
577ab54025
commit
fe1d141b34
1 changed files with 1 additions and 1 deletions
|
|
@ -118,7 +118,7 @@ class StorageTests(object):
|
||||||
|
|
||||||
def main():
|
def main():
|
||||||
for s in d:
|
for s in d:
|
||||||
if not s.collection.startswith('test'):
|
if s.collection not in collections:
|
||||||
# ownCloud has many more collections, as on-the-fly
|
# ownCloud has many more collections, as on-the-fly
|
||||||
# creation doesn't really work there. Skip those
|
# creation doesn't really work there. Skip those
|
||||||
# collections, as they are not relevant to us.
|
# collections, as they are not relevant to us.
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue