From 29d1106f98aa263e8e6b9eed9bb336e92856ecd3 Mon Sep 17 00:00:00 2001 From: chavlin Date: Wed, 23 Oct 2024 11:45:41 -0500 Subject: [PATCH] fix test_sample_data expectation --- src/yt_napari/_tests/test_sample_data.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/yt_napari/_tests/test_sample_data.py b/src/yt_napari/_tests/test_sample_data.py index f518491..84c07f8 100644 --- a/src/yt_napari/_tests/test_sample_data.py +++ b/src/yt_napari/_tests/test_sample_data.py @@ -42,4 +42,4 @@ def mock_importlib_files(package_name: str): monkeypatch.setattr(importlib_resources, "files", mock_importlib_files) result = gl.load_sample_data(sample_name) - assert isinstance(result[0], np.ndarray) + assert isinstance(result[0][0], np.ndarray)