Skip to content

Commit

Permalink
Test fixing
Browse files Browse the repository at this point in the history
  • Loading branch information
vigji committed Mar 23, 2021
1 parent 22122c5 commit ed67c4a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/test_napari_split_dataset.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@
"""Tests for `napari_split_dataset` package."""

from pathlib import Path
from split_dataset import SplitDataset

import pytest
from dask.array.core import Array
from numpy import ndarray

from napari_split_dataset import napari_split_dataset
Expand Down Expand Up @@ -37,7 +37,7 @@ def test_reader(path, expected):
"path, expected",
[
(ASSETS_PATH / "sample_3d", ndarray),
(ASSETS_PATH / "sample_4d", Array),
(ASSETS_PATH / "sample_4d", SplitDataset),
(ASSETS_PATH / "random", type(None)),
(ASSETS_PATH / "array.h5", type(None)),
],
Expand Down

0 comments on commit ed67c4a

Please sign in to comment.