0
0
mirror of https://github.com/bec-project/bec_widgets.git synced 2025-07-14 11:41:49 +02:00

fix(cmaps): unified all defaults to magma cmap

This commit is contained in:
2024-08-27 12:49:53 +02:00
parent 060935ffc5
commit 1ca9499edd
12 changed files with 32 additions and 32 deletions

View File

@ -49,8 +49,8 @@ def test_mouse_moved_lines(plot_widget_with_crosshair):
crosshair.mouse_moved(event_mock)
# Assert the expected behavior
assert crosshair.v_line.pos().x() == 2
assert crosshair.h_line.pos().y() == 5
assert np.isclose(crosshair.v_line.pos().x(), 2)
assert np.isclose(crosshair.h_line.pos().y(), 5)
def test_mouse_moved_signals(plot_widget_with_crosshair):