Skip to content

Commit 54af107

Browse files
committed
don't check for a off-spec warning in variablelengthutf8
1 parent 41c8992 commit 54af107

1 file changed

Lines changed: 6 additions & 1 deletion

File tree

tests/test_dtype/test_npy/test_string.py

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -120,7 +120,12 @@ class TestFixedLengthUTF32(BaseTestZDType):
120120
)
121121

122122

123-
@pytest.mark.parametrize("zdtype", [FixedLengthUTF32(length=10), VariableLengthUTF8()])
123+
@pytest.mark.parametrize(
124+
"zdtype",
125+
[
126+
FixedLengthUTF32(length=10),
127+
],
128+
)
124129
def test_unstable_dtype_warning(zdtype: FixedLengthUTF32 | VariableLengthUTF8) -> None:
125130
"""
126131
Test that we get a warning when serializing a dtype without a zarr v3 spec to json

0 commit comments

Comments
 (0)