Skip to content

Commit 3a46dd0

Browse files
committed
Fixed tests
1 parent be63783 commit 3a46dd0

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

tests/test_xrencoding.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,9 @@ def get_v_attrs():
2626

2727

2828
def get_v_meta():
29-
return read_json("v/.zarray")
29+
meta = read_json("v/.zarray")
30+
meta.pop("dimension_separator", None) # new in xarray/zarr
31+
return meta
3032

3133

3234
class XArrayEncodingTest(unittest.TestCase):

0 commit comments

Comments
 (0)