From d8e683dc503fe0bd59ba0a393db799b31b9e84f1 Mon Sep 17 00:00:00 2001 From: mavaylon1 Date: Mon, 1 Jul 2024 09:32:04 -0700 Subject: [PATCH] try --- tests/unit/utils_test/test_data_utils.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tests/unit/utils_test/test_data_utils.py b/tests/unit/utils_test/test_data_utils.py index 8255515b7..6539f566a 100644 --- a/tests/unit/utils_test/test_data_utils.py +++ b/tests/unit/utils_test/test_data_utils.py @@ -11,8 +11,9 @@ except ImportError: ZARR_INSTALLED = False -@unittest.skipIf(not ZARR_INSTALLED, "Zarr is not installed") class TestAppendData(TestCase): + + @unittest.skipIf(not ZARR_INSTALLED, "Zarr is not installed") def test_append_data_zarr(self): zarr_array = zarr.array([1,2,3]) new = append_data(zarr_array, 4)