replaced fmt with LOG

This commit is contained in:
2025-06-24 16:24:25 +02:00
parent 8e7c9eadff
commit ff7312f45d
2 changed files with 7 additions and 6 deletions

View File

@ -5,9 +5,8 @@ import numpy as np
@pytest.mark.files
def test_read_rawfile_with_roi(test_data_path):
# Starting with f1 there is now 7 frames left in the series of files
with RawFile(test_data_path / "raw/SingleChipROI/Data_master_0.json") as f:
headers, frames = f.read()
with RawFile(test_data_path / "raw/SingleChipROI/Data_master_0.json") as f:
headers, frames = f.read()
assert headers.size == 10100
assert frames.shape == (10100, 256, 256)