changed RoMode to be consistent with slsdet

This commit is contained in:
2026-02-03 17:16:15 +01:00
parent 6b4a2a6fb1
commit f5ea01d238
8 changed files with 33 additions and 33 deletions

View File

@@ -1,7 +1,7 @@
import pytest
from aare import RawMasterFile, ReadingMode, DetectorType
from aare import RawMasterFile, ReadoutMode, DetectorType
@pytest.mark.withdata
@@ -10,5 +10,5 @@ def test_read_rawfile_quad_eiger_and_compare_to_numpy(test_data_path):
file_name = test_data_path/'raw/jungfrau/jungfrau_single_master_0.json'
f = RawMasterFile(file_name)
assert(f.reading_mode == ReadingMode.Unknown)
assert(f.reading_mode == ReadoutMode.UNKNOWN)
assert(f.detector_type == DetectorType.Jungfrau)