mirror of
https://github.com/samsonjs/vdirsyncer.git
synced 2026-03-25 08:55:50 +00:00
Merge pull request #368 from untitaker/remove-owncloud-xfail
Remove owncloud xfails
This commit is contained in:
commit
9862eb9865
1 changed files with 0 additions and 8 deletions
|
|
@ -143,9 +143,6 @@ class StorageTests(object):
|
|||
assert list(s.list()) == [(href, etag)]
|
||||
|
||||
def test_has(self, s, get_item):
|
||||
if getattr(self, 'dav_server', '') == 'owncloud':
|
||||
# https://github.com/owncloud/calendar/issues/935
|
||||
pytest.skip('ownCloud is buggy.')
|
||||
assert not s.has('asd')
|
||||
href, etag = s.upload(get_item())
|
||||
assert s.has(href)
|
||||
|
|
@ -255,10 +252,6 @@ 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.')
|
||||
|
||||
if not getattr(self, 'dav_server', ''):
|
||||
assert not s.get_meta('color')
|
||||
assert not s.get_meta('displayname')
|
||||
|
|
@ -287,6 +280,5 @@ class StorageTests(object):
|
|||
|
||||
if not getattr(self, 'dav_server', None):
|
||||
# ownCloud replaces "" with "unnamed"
|
||||
# Also https://github.com/owncloud/core/issues/18409
|
||||
s.set_meta('displayname', value)
|
||||
assert s.get_meta('displayname') == normalize_meta_value(value)
|
||||
|
|
|
|||
Loading…
Reference in a new issue