mirror of
https://github.com/samsonjs/vdirsyncer.git
synced 2026-04-27 14:57:41 +00:00
Remove hypothesis from system test
This commit is contained in:
parent
b1cddde635
commit
f58f06d2b5
1 changed files with 4 additions and 4 deletions
|
|
@ -291,10 +291,10 @@ class StorageTests(object):
|
||||||
assert rv == x
|
assert rv == x
|
||||||
assert isinstance(rv, str)
|
assert isinstance(rv, str)
|
||||||
|
|
||||||
@given(value=st.one_of(
|
@pytest.mark.parametrize('value', [
|
||||||
st.none(),
|
'fööbör',
|
||||||
printable_characters_strategy
|
'ананасовое перо'
|
||||||
))
|
])
|
||||||
def test_metadata_normalization(self, requires_metadata, s, value):
|
def test_metadata_normalization(self, requires_metadata, s, value):
|
||||||
x = s.get_meta('displayname')
|
x = s.get_meta('displayname')
|
||||||
assert x == normalize_meta_value(x)
|
assert x == normalize_meta_value(x)
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue