mirror of
https://github.com/samsonjs/vdirsyncer.git
synced 2026-04-27 14:57:41 +00:00
Hypothesis: Blacklist surrogates
This commit is contained in:
parent
23ea0e203f
commit
75a9987ec2
2 changed files with 4 additions and 2 deletions
|
|
@ -70,5 +70,7 @@ HAHA:YES
|
||||||
END:FOO'''
|
END:FOO'''
|
||||||
|
|
||||||
printable_characters_strategy = st.text(
|
printable_characters_strategy = st.text(
|
||||||
st.characters(blacklist_categories=('Cc',))
|
st.characters(blacklist_categories=(
|
||||||
|
'Cc', 'Cs'
|
||||||
|
))
|
||||||
)
|
)
|
||||||
|
|
|
||||||
|
|
@ -12,7 +12,7 @@ from vdirsyncer.utils.vobject import Item
|
||||||
|
|
||||||
uid_strategy = st.text(st.characters(blacklist_categories=(
|
uid_strategy = st.text(st.characters(blacklist_categories=(
|
||||||
'Zs', 'Zl', 'Zp',
|
'Zs', 'Zl', 'Zp',
|
||||||
'Cc'
|
'Cc', 'Cs'
|
||||||
)))
|
)))
|
||||||
|
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue