Skip to content

Commit

Permalink
fixed local tests and removed unnecessary io check
Browse files Browse the repository at this point in the history
  • Loading branch information
pauladkisson committed Sep 15, 2023
1 parent ce69ecd commit 5b8fe3c
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions tests/test_scan_image_tiff.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,6 @@ class TestScanImageTiffExtractor(TestCase):
def setUpClass(cls):
cls.file_path = OPHYS_DATA_PATH / "imaging_datasets" / "Tif" / "sample_scanimage.tiff"
cls.tmpdir = Path(mkdtemp())
with ScanImageTiffReader(filename=str(cls.file_path)) as io:
cls.data = io.data()
cls.imaging_extractor = ScanImageTiffImagingExtractor(file_path=cls.file_path)
with ScanImageTiffReader(filename=str(cls.imaging_extractor.file_path)) as io:
cls.data = io.data()
Expand Down

0 comments on commit 5b8fe3c

Please sign in to comment.