mirror of
https://github.com/samsonjs/vdirsyncer.git
synced 2026-04-03 10:25:51 +00:00
Just skip meta tests for ownCloud for now
This commit is contained in:
parent
dab6388cc7
commit
029f5e3eee
1 changed files with 4 additions and 0 deletions
|
|
@ -255,6 +255,10 @@ class StorageTests(object):
|
|||
assert urlquote(uid, '/@:') in href
|
||||
|
||||
def test_metadata(self, requires_metadata, s):
|
||||
# https://github.com/owncloud/core/issues/18409
|
||||
if getattr(self, 'dav_server', '') == 'owncloud':
|
||||
pytest.skip('ownCloud is fundamentally broken.')
|
||||
|
||||
try:
|
||||
s.set_meta('color', None)
|
||||
assert s.get_meta('color') is None
|
||||
|
|
|
|||
Loading…
Reference in a new issue