diff --git a/tests/conftest.py b/tests/conftest.py index b186cf8..a7708ef 100644 --- a/tests/conftest.py +++ b/tests/conftest.py @@ -13,12 +13,8 @@ def make_napari_viewer_with_images(make_napari_viewer, pytestconfig): viewer = make_napari_viewer() root_path = pytestconfig.rootpath - atlas_image = Image.open( - root_path / "src/tests/test_images/Atlas_Hipp.tif" - ) - moving_image = Image.open( - root_path / "src/tests/test_images/sample_hipp.tif" - ) + atlas_image = Image.open(root_path / "tests/test_images/Atlas_Hipp.tif") + moving_image = Image.open(root_path / "tests/test_images/sample_hipp.tif") viewer.add_image(np.asarray(moving_image), name="moving_image") viewer.add_image(np.asarray(atlas_image), name="atlas_image")