File tree Expand file tree Collapse file tree 2 files changed +7
-7
lines changed Expand file tree Collapse file tree 2 files changed +7
-7
lines changed Original file line number Diff line number Diff line change @@ -694,12 +694,12 @@ async def create(
694
694
else :
695
695
chunk_shape = shape
696
696
697
- # if order is not None:
698
- # warnings.warn(
699
- # "order is deprecated, use config `array.order` instead",
700
- # DeprecationWarning,
701
- # stacklevel=2,
702
- # )
697
+ if order is not None :
698
+ warnings .warn (
699
+ "order is deprecated, use config `array.order` instead" ,
700
+ DeprecationWarning ,
701
+ stacklevel = 2 ,
702
+ )
703
703
if synchronizer is not None :
704
704
warnings .warn ("synchronizer is not yet implemented" , RuntimeWarning , stacklevel = 2 )
705
705
if chunk_store is not None :
Original file line number Diff line number Diff line change @@ -403,7 +403,7 @@ def test_group_array_creation(
403
403
404
404
empty_like_array = group .empty_like (empty_array )
405
405
assert isinstance (empty_like_array , Array )
406
- assert empty_array .fill_value == 0
406
+ assert empty_like_array .fill_value == 0
407
407
408
408
empty_array_bool = group .empty (shape = shape , dtype = np .dtype ("bool" ))
409
409
assert isinstance (empty_array_bool , Array )
You can’t perform that action at this time.
0 commit comments