@@ -522,6 +522,7 @@ def test_info_v2(self, chunks: tuple[int, int], shards: tuple[int, int] | None)
522522 expected = ArrayInfo (
523523 _zarr_format = 2 ,
524524 _data_type = np .dtype ("float64" ),
525+ _fill_value = arr .fill_value ,
525526 _shape = (8 , 8 ),
526527 _chunk_shape = chunks ,
527528 _shard_shape = None ,
@@ -539,6 +540,7 @@ def test_info_v3(self, chunks: tuple[int, int], shards: tuple[int, int] | None)
539540 expected = ArrayInfo (
540541 _zarr_format = 3 ,
541542 _data_type = DataType .parse ("float64" ),
543+ _fill_value = arr .fill_value ,
542544 _shape = (8 , 8 ),
543545 _chunk_shape = chunks ,
544546 _shard_shape = shards ,
@@ -564,6 +566,7 @@ def test_info_complete(self, chunks: tuple[int, int], shards: tuple[int, int] |
564566 expected = ArrayInfo (
565567 _zarr_format = 3 ,
566568 _data_type = DataType .parse ("float64" ),
569+ _fill_value = arr .fill_value ,
567570 _shape = (8 , 8 ),
568571 _chunk_shape = chunks ,
569572 _shard_shape = shards ,
@@ -599,6 +602,7 @@ async def test_info_v2_async(
599602 expected = ArrayInfo (
600603 _zarr_format = 2 ,
601604 _data_type = np .dtype ("float64" ),
605+ _fill_value = arr .metadata .fill_value ,
602606 _shape = (8 , 8 ),
603607 _chunk_shape = (2 , 2 ),
604608 _shard_shape = None ,
@@ -624,6 +628,7 @@ async def test_info_v3_async(
624628 expected = ArrayInfo (
625629 _zarr_format = 3 ,
626630 _data_type = DataType .parse ("float64" ),
631+ _fill_value = arr .metadata .fill_value ,
627632 _shape = (8 , 8 ),
628633 _chunk_shape = chunks ,
629634 _shard_shape = shards ,
@@ -651,6 +656,7 @@ async def test_info_complete_async(
651656 expected = ArrayInfo (
652657 _zarr_format = 3 ,
653658 _data_type = DataType .parse ("float64" ),
659+ _fill_value = arr .metadata .fill_value ,
654660 _shape = (8 , 8 ),
655661 _chunk_shape = chunks ,
656662 _shard_shape = shards ,
0 commit comments