Skip to content

Commit 97bea53

Browse files
committed
fix error match
1 parent dd8afc5 commit 97bea53

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

numcodecs/tests/test_zarr3.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -153,7 +153,7 @@ def test_generic_filter_packbits(store: Store):
153153
a = Array.open(store / "generic_packbits")
154154
np.testing.assert_array_equal(data, a[:, :])
155155

156-
with pytest.raises(ValueError, match="packbits filter requires bool dtype"):
156+
with pytest.raises(ValueError, match=".*requires bool dtype.*"):
157157
Array.create(
158158
store / "generic_packbits_err",
159159
shape=data.shape,

0 commit comments

Comments
 (0)