From e90f5492c364ac5a0506f8c36973881786b9a8eb Mon Sep 17 00:00:00 2001
From: Thomas Kluyver <thomas@kluyver.me.uk>
Date: Wed, 13 Dec 2023 18:56:46 +0000
Subject: [PATCH] Fix attribute name in test

---
 tests/test_calcat_interface2.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/tests/test_calcat_interface2.py b/tests/test_calcat_interface2.py
index 6159e80c9..0a46677ef 100644
--- a/tests/test_calcat_interface2.py
+++ b/tests/test_calcat_interface2.py
@@ -59,5 +59,5 @@ def test_AGIPD_CalibrationData_report():
     # Report ID: https://in.xfel.eu/calibration/reports/3757
     agipd_cd = CalibrationData.from_report(3757)
     assert set(agipd_cd) == {'Offset', 'Noise', 'ThresholdsDark', 'BadPixelsDark'}
-    assert agipd_cd.aggregators == [f'AGIPD{n:02}' for n in range(16)]
+    assert agipd_cd.aggregator_names == [f'AGIPD{n:02}' for n in range(16)]
     assert isinstance(agipd_cd['Offset'].constants['AGIPD00'], SingleConstantVersion)
-- 
GitLab