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"),