mirror of
https://github.com/bec-project/bec_widgets.git
synced 2026-03-29 04:48:35 +02:00
test: fix tests for qtheme v1
This commit is contained in:
@@ -64,10 +64,10 @@ def test_dark_mode_button_changes_theme(dark_mode_button):
|
||||
Test that the dark mode button changes the theme correctly.
|
||||
"""
|
||||
with mock.patch(
|
||||
"bec_widgets.widgets.utility.visual.dark_mode_button.dark_mode_button.set_theme"
|
||||
) as mocked_set_theme:
|
||||
"bec_widgets.widgets.utility.visual.dark_mode_button.dark_mode_button.apply_theme"
|
||||
) as mocked_apply_theme:
|
||||
dark_mode_button.toggle_dark_mode()
|
||||
mocked_set_theme.assert_called_with("dark")
|
||||
mocked_apply_theme.assert_called_with("dark")
|
||||
|
||||
dark_mode_button.toggle_dark_mode()
|
||||
mocked_set_theme.assert_called_with("light")
|
||||
mocked_apply_theme.assert_called_with("light")
|
||||
|
||||
Reference in New Issue
Block a user