Skip to content

Commit ba7e50f

Browse files
committed
Fix typo pth_to_image
1 parent 0c00f9d commit ba7e50f

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

napari_ome_zarr/_tests/test_reader.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -96,9 +96,9 @@ def assert_layer(self, layer_data):
9696

9797
@pytest.mark.parametrize("path", ["path_3d", "path_2d"])
9898
def test_image(self, path):
99-
pth_to_image = str(getattr(self, path))
100-
print(f"test_image {pth_to_image}")
101-
layers = napari_get_reader(pth_to_image)()
99+
path_to_image = str(getattr(self, path))
100+
print(f"test_image {path_to_image}")
101+
layers = napari_get_reader(path_to_image)()
102102
self.assert_layers(layers, True, False, path)
103103

104104
def test_labels(self):

0 commit comments

Comments
 (0)