Remove old Baikal xfails

Ref #160
Ref https://github.com/fruux/sabre-dav/issues/422
This commit is contained in:
Markus Unterwaditzer 2016-03-08 21:27:45 +01:00
parent 6b9d7b074a
commit 66bd52244d
2 changed files with 2 additions and 14 deletions

View file

@ -199,8 +199,8 @@ Baikal
Vdirsyncer is continuously tested against the latest version of Baikal_.
- Baikal up to ``0.2.7`` also uses an old version of SabreDAV, with the same issue as
ownCloud, see :gh:`160`.
- Baikal up to ``0.2.7`` also uses an old version of SabreDAV, with the same
issue as ownCloud, see :gh:`160`. This issue is fixed in later versions.
.. _Baikal: http://baikal-server.com/

View file

@ -91,10 +91,6 @@ class StorageTests(object):
assert etag2 == etag
def test_upload_already_existing(self, s, get_item):
if getattr(self, 'dav_server', '') == 'baikal':
# https://github.com/untitaker/vdirsyncer/issues/160
pytest.xfail(reason='Baikal uses an old version of SabreDAV.')
item = get_item()
s.upload(item)
with pytest.raises(exceptions.PreconditionFailed):
@ -117,19 +113,11 @@ class StorageTests(object):
assert_item_equals(s.get(href)[0], new_item)
def test_update_nonexisting(self, s, get_item):
if getattr(self, 'dav_server', '') == 'baikal':
# https://github.com/untitaker/vdirsyncer/issues/160
pytest.xfail(reason='Baikal uses an old version of SabreDAV.')
item = get_item()
with pytest.raises(exceptions.PreconditionFailed):
s.update('huehue', item, '"123"')
def test_wrong_etag(self, s, get_item):
if getattr(self, 'dav_server', '') == 'baikal':
# https://github.com/untitaker/vdirsyncer/issues/160
pytest.xfail(reason='Baikal uses an old version of SabreDAV.')
item = get_item()
href, etag = s.upload(item)
with pytest.raises(exceptions.PreconditionFailed):