0
0
mirror of https://github.com/bec-project/bec_widgets.git synced 2025-07-13 19:21:50 +02:00

fix(plot_framework): all widgets, popups and side menus cleanups adjusted

This commit is contained in:
2025-04-08 17:18:52 +02:00
committed by wyzula-jan
parent a1bec75115
commit 337a332ed1
20 changed files with 225 additions and 74 deletions

View File

@ -29,8 +29,6 @@ def test_axis_settings_init(axis_settings_fixture):
assert axis_settings.layout.count() == 1 # scroll area
# Check the target
assert axis_settings.target_widget == plot_base
# Check the object name
assert axis_settings.objectName() == "AxisSettings"
def test_change_ui_updates_plot_base(axis_settings_fixture, qtbot):

View File

@ -33,8 +33,6 @@ def test_curve_setting_init(curve_setting_fixture):
"""
curve_setting, wf = curve_setting_fixture
# Basic checks
assert curve_setting.objectName() == "CurveSetting"
# The layout should be QVBoxLayout
assert isinstance(curve_setting.layout, QVBoxLayout)

View File

@ -134,12 +134,6 @@ def test_curve_access_pattern(qtbot, mocked_client):
assert wf.get_curve(0) == c1
assert wf.get_curve(1) == c2
# Check that the curve is accessible by label
assert wf["bpm4i-bpm4i"] == c1
assert wf["bpm3a-bpm3a"] == c2
assert wf[0] == c1
assert wf[1] == c2
assert wf.curves[0] == c1
assert wf.curves[1] == c2