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 aab4138 commit 346d291Copy full SHA for 346d291
tests/test_store/test_zip.py
@@ -80,7 +80,7 @@ def test_api_integration(self, store: ZipStore) -> None:
80
assert np.array_equal(data, z[:])
81
82
# you can overwrite existing chunks but zipfile will issue a warning
83
- with pytest.warns(UserWarning, match="Duplicate name: 'foo/c/0/0'"):
+ with pytest.warns(UserWarning, match=f"Duplicate name: '{store.resolve_key('foo/c/0/0')}'"):
84
z[0, 0] = 100
85
86
# TODO: assigning an entire chunk to fill value ends up deleting the chunk which is not supported
0 commit comments