tests: fix e2e tests for namespace refactoring

This commit is contained in:
2025-03-13 16:38:42 +01:00
committed by wyzula-jan
parent 0b00cd24fd
commit d211bd67ab
3 changed files with 5 additions and 4 deletions
+3 -2
View File
@@ -345,8 +345,9 @@ class BECGuiClient(RPCBase):
rpc_client = RPCBase(gui_id=f"{self._gui_id}:window", parent=self)
return rpc_client._run_rpc("_dump")
def start(self):
return self._start_server()
def start(self, wait: bool = True) -> None:
"""Start the server and show the GUI window."""
return self._start_server(wait=wait)
def _do_show_all(self):
rpc_client = RPCBase(gui_id=f"{self._gui_id}:window", parent=self)