mirror of
https://github.com/samsonjs/vdirsyncer.git
synced 2026-03-31 09:55:55 +00:00
Don't actually tolerate this
This commit is contained in:
parent
ef18e78ca0
commit
6207d9419c
1 changed files with 0 additions and 9 deletions
|
|
@ -59,15 +59,6 @@ class TestFilesystemStorage(StorageTests):
|
|||
href, etag = s.upload(item)
|
||||
assert item.uid not in href
|
||||
|
||||
if sys.platform == 'win32':
|
||||
def test_case_sensitive_uids(self, s, get_item):
|
||||
s.upload(get_item(uid='A' * 42))
|
||||
with pytest.raises(AlreadyExistingError):
|
||||
s.upload(get_item(uid='a' * 42))
|
||||
items = list(href for href, etag in s.list())
|
||||
assert len(items) == 1
|
||||
assert len(set(items)) == 1
|
||||
|
||||
def test_post_hook_inactive(self, tmpdir, monkeypatch):
|
||||
|
||||
def check_call_mock(*args, **kwargs):
|
||||
|
|
|
|||
Loading…
Reference in a new issue