Don't actually tolerate this

This commit is contained in:
Markus Unterwaditzer 2015-02-08 19:55:47 +01:00
parent ef18e78ca0
commit 6207d9419c

View file

@ -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):