Skip to content

Commit

Permalink
fix test
Browse files Browse the repository at this point in the history
  • Loading branch information
valeriupredoi committed Mar 27, 2024
1 parent b5d5925 commit 8b46b4b
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions tests/unit/test_storage.py
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ def test_reduced_chunk_fully_masked_data_fill():
order="C", chunk_selection=ch_sel,
method=np.mean)
assert rc[0].size == 0
assert rc[1] is None
assert rc[1] == 0


def test_reduced_chunk_fully_masked_data_missing():
Expand All @@ -79,7 +79,7 @@ def test_reduced_chunk_fully_masked_data_missing():
order="C", chunk_selection=ch_sel,
method=np.mean)
assert rc[0].size == 0
assert rc[1] is None
assert rc[1] == 0


def test_reduced_chunk_fully_masked_data_vmin():
Expand All @@ -98,7 +98,7 @@ def test_reduced_chunk_fully_masked_data_vmin():
order="C", chunk_selection=ch_sel,
method=np.mean)
assert rc[0].size == 0
assert rc[1] is None
assert rc[1] == 0


def test_reduced_chunk_fully_masked_data_vmax():
Expand All @@ -117,7 +117,7 @@ def test_reduced_chunk_fully_masked_data_vmax():
order="C", chunk_selection=ch_sel,
method=np.mean)
assert rc[0].size == 0
assert rc[1] is None
assert rc[1] == 0


def test_zero_data():
Expand Down

0 comments on commit 8b46b4b

Please sign in to comment.