From 5eaec7434148d067008ba46a55e964d94784d73b Mon Sep 17 00:00:00 2001 From: tligui_y Date: Sun, 23 Nov 2025 17:33:16 +0100 Subject: [PATCH] Update tests/test_core_scaninfo.py --- tests/test_core_scaninfo.py | 3 --- 1 file changed, 3 deletions(-) diff --git a/tests/test_core_scaninfo.py b/tests/test_core_scaninfo.py index 2b97408c2..1aa92b28e 100644 --- a/tests/test_core_scaninfo.py +++ b/tests/test_core_scaninfo.py @@ -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"),