@@ -522,6 +522,7 @@ def test_info_v2(self, chunks: tuple[int, int], shards: tuple[int, int] | None)
522
522
expected = ArrayInfo (
523
523
_zarr_format = 2 ,
524
524
_data_type = np .dtype ("float64" ),
525
+ _fill_value = arr .fill_value ,
525
526
_shape = (8 , 8 ),
526
527
_chunk_shape = chunks ,
527
528
_shard_shape = None ,
@@ -539,6 +540,7 @@ def test_info_v3(self, chunks: tuple[int, int], shards: tuple[int, int] | None)
539
540
expected = ArrayInfo (
540
541
_zarr_format = 3 ,
541
542
_data_type = DataType .parse ("float64" ),
543
+ _fill_value = arr .fill_value ,
542
544
_shape = (8 , 8 ),
543
545
_chunk_shape = chunks ,
544
546
_shard_shape = shards ,
@@ -564,6 +566,7 @@ def test_info_complete(self, chunks: tuple[int, int], shards: tuple[int, int] |
564
566
expected = ArrayInfo (
565
567
_zarr_format = 3 ,
566
568
_data_type = DataType .parse ("float64" ),
569
+ _fill_value = arr .fill_value ,
567
570
_shape = (8 , 8 ),
568
571
_chunk_shape = chunks ,
569
572
_shard_shape = shards ,
@@ -599,6 +602,7 @@ async def test_info_v2_async(
599
602
expected = ArrayInfo (
600
603
_zarr_format = 2 ,
601
604
_data_type = np .dtype ("float64" ),
605
+ _fill_value = arr .metadata .fill_value ,
602
606
_shape = (8 , 8 ),
603
607
_chunk_shape = (2 , 2 ),
604
608
_shard_shape = None ,
@@ -624,6 +628,7 @@ async def test_info_v3_async(
624
628
expected = ArrayInfo (
625
629
_zarr_format = 3 ,
626
630
_data_type = DataType .parse ("float64" ),
631
+ _fill_value = arr .metadata .fill_value ,
627
632
_shape = (8 , 8 ),
628
633
_chunk_shape = chunks ,
629
634
_shard_shape = shards ,
@@ -651,6 +656,7 @@ async def test_info_complete_async(
651
656
expected = ArrayInfo (
652
657
_zarr_format = 3 ,
653
658
_data_type = DataType .parse ("float64" ),
659
+ _fill_value = arr .metadata .fill_value ,
654
660
_shape = (8 , 8 ),
655
661
_chunk_shape = chunks ,
656
662
_shard_shape = shards ,
0 commit comments