We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 15788f5 commit 0a97842Copy full SHA for 0a97842
tests/test_properties.py
@@ -16,12 +16,9 @@
16
17
#### TODO: Provide this in zarr.strategies
18
# Copied from Xarray
19
-# only use characters within the "Latin Extended-A" subset of unicode
20
-_readable_characters = st.characters(categories=["L", "N"], max_codepoint=0x017F)
21
-_readable_strings = st.text(_readable_characters, max_size=5)
22
-_attr_keys = st.text(_readable_characters, min_size=1)
+_attr_keys = st.text(st.characters(), min_size=1)
23
_attr_values = st.recursive(
24
- st.none() | st.booleans() | _readable_strings,
+ st.none() | st.booleans() | st.text(st.characters(), max_size=5),
25
lambda children: st.lists(children) | st.dictionaries(_attr_keys, children),
26
max_leaves=3,
27
)
0 commit comments