Skip to content

Commit 2b5c8c9

Browse files
committed
refactor: moving tools tests to test_tools
1 parent 205f80e commit 2b5c8c9

File tree

5 files changed

+704
-710
lines changed

5 files changed

+704
-710
lines changed

src/ansys/mapdl/core/mapdl_grpc.py

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -420,9 +420,8 @@ def __init__(
420420
self.remove_temp_dir_on_exit: bool = remove_temp_dir_on_exit
421421
self._jobname: str = start_parm.get("jobname", "file")
422422
self._path: Optional[str] = start_parm.get("run_location", None)
423-
self._start_instance: Optional[str] = (
424-
start_parm.get("start_instance") or get_start_instance()
425-
)
423+
self._start_instance: Optional[str] = start_parm.get("start_instance")
424+
426425
self._busy: bool = False # used to check if running a command on the server
427426
self._local: bool = start_parm.get("local", True)
428427
self._launched: bool = start_parm.get("launched", True)

0 commit comments

Comments
 (0)