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

refactor(logger): changed prints to logger calls

This commit is contained in:
2024-09-03 20:08:35 +02:00
parent 814c823875
commit 3a5d7d0796
18 changed files with 99 additions and 52 deletions

View File

@ -71,6 +71,6 @@ def test_client_utils_passes_client_config_to_server(bec_dispatcher):
mock_start_plot.return_value = [mock.MagicMock(), mock.MagicMock()]
mixin.show()
mock_start_plot.assert_called_once_with(
"gui_id", BECGuiClientMixin, mixin._client._service_config.config
"gui_id", BECGuiClientMixin, mixin._client._service_config.config, logger=mock.ANY
)
mock_start_update.assert_called_once()