From aadb9e12c89a999ca80c537902f7e4b7d7eda410 Mon Sep 17 00:00:00 2001 From: Paolo Veglio <paolo.veglio@ssec.wisc.edu> Date: Wed, 28 Aug 2024 15:01:21 +0000 Subject: [PATCH] fixed test_group_count() --- tests/test_utilities.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tests/test_utilities.py b/tests/test_utilities.py index f53ceee..8d06ceb 100644 --- a/tests/test_utilities.py +++ b/tests/test_utilities.py @@ -178,16 +178,16 @@ def test_bt11_elevation_correction(height: np.ndarray, ref_correction: np.ndarra assert np.allclose(correction, ref_correction) -def test_group_count(ref_bits: dict) -> None: +def test_group_count(ref_bits: dict, ref_group_count: np.ndarray) -> None: """Test group count.""" assert np.allclose(utils.group_count(ref_bits), ref_group_count) -def test_restoral_flag(bits: np.ndarray) -> None: +def test_restoral_flag() -> None: """Test computation of restoral flags.""" pass -def test_combine_indices(index1: tuple, index2: tuple, shape: tuple) -> None: +def test_combine_indices() -> None: """Test combine indices.""" pass -- GitLab