Skip to content

Commit 8d810cf

Browse files
committed
fixes
1 parent 43620b6 commit 8d810cf

1 file changed

Lines changed: 0 additions & 3 deletions

File tree

tests/test_image_classes.py

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,19 +22,16 @@ def sample_array():
2222

2323
@pytest.fixture
2424
def sample_extent():
25-
"""Create a sample extent dictionary"""
2625
return {"xmin": 0, "xmax": 100, "ymin": 0, "ymax": 50}
2726

2827

2928
@pytest.fixture
3029
def ext_image(sample_array, sample_extent):
31-
"""Create a sample ExtImage"""
3230
return ExtImage(sample_array, sample_extent)
3331

3432

3533
@pytest.fixture
3634
def sfe_object():
37-
"""Create a sample SpatialFeatureExperiment object"""
3835
counts = np.random.negative_binomial(5, 0.5, (100, 50))
3936
coords = np.random.uniform(0, 1000, (100, 2))
4037
return SpatialFeatureExperiment(counts, coords)

0 commit comments

Comments
 (0)