fix: use .show instead of .start

This commit is contained in:
2026-05-20 13:33:10 +02:00
committed by Jan Wyzula
parent 80694d151f
commit b4beb274da
5 changed files with 8 additions and 8 deletions
+1 -1
View File
@@ -221,7 +221,7 @@ def test_client_utils_new_starts_server_when_not_alive():
with mock.patch("bec_widgets.cli.client_utils.wait_for_server", _no_wait_for_server):
with (
mock.patch.object(gui, "_check_if_server_is_alive", return_value=False),
mock.patch.object(gui, "start") as mock_start,
mock.patch.object(gui, "show") as mock_start,
):
gui.new(wait=False, startup_profile=None)