Update tests/test_core_scaninfo.py
Run CI Tests / test (push) Successful in 2m31s

This commit is contained in:
2025-11-23 17:33:16 +01:00
parent 7b7abdc3bf
commit 5eaec74341
-3
View File
@@ -11,7 +11,6 @@ class DummyAdjustable:
@pytest.mark.parametrize(
"adjustables,values,suffix,expected_filename,expected_params",
[
# --- 1 adjustable ---
(
[DummyAdjustable()],
[1, 2, 3],
@@ -20,7 +19,6 @@ class DummyAdjustable:
{"name": ["adj"], "Id": ["id"], "units": ["u"]},
),
# --- 1 adjustable with custom names ---
(
[DummyAdjustable("motorX", "M1", "mm")],
[10, 20],
@@ -29,7 +27,6 @@ class DummyAdjustable:
{"name": ["motorX"], "Id": ["M1"], "units": ["mm"]},
),
# --- 3 different adjustables ---
(
[
DummyAdjustable("motorX", "M1", "mm"),