Skip to content
Snippets Groups Projects
Commit 39994037 authored by Jammer, Tim's avatar Jammer, Tim
Browse files

fix typo

parent a0a708b4
Branches merged
No related tags found
No related merge requests found
...@@ -294,7 +294,7 @@ class TemplateManager: ...@@ -294,7 +294,7 @@ class TemplateManager:
assert self._descr_short != "" assert self._descr_short != ""
return self._descr_short return self._descr_short
def set_cad_deadlock(self, can_deadlock=True): def set_can_deadlock(self, can_deadlock=True):
self._can_deadlock = can_deadlock self._can_deadlock = can_deadlock
def get_instruction(self, identifier: str = None, return_list=False, rank_excuting: int | str = None, def get_instruction(self, identifier: str = None, return_list=False, rank_excuting: int | str = None,
......
...@@ -74,7 +74,7 @@ class InvalidCommErrorP2P(ErrorGenerator): ...@@ -74,7 +74,7 @@ class InvalidCommErrorP2P(ErrorGenerator):
tm = get_invalid_param_p2p_case("comm", comm_to_use, check_recv, send_func, recv_func) tm = get_invalid_param_p2p_case("comm", comm_to_use, check_recv, send_func, recv_func)
tm.set_cad_deadlock()# deadlock if msg is send one one comm and not received on the other comm tm.set_can_deadlock()# deadlock if msg is send one one comm and not received on the other comm
# deadlock can be considered to occur even if comm=NULL as send/receive will not be matched # deadlock can be considered to occur even if comm=NULL as send/receive will not be matched
error_string = "ParamMatching" error_string = "ParamMatching"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment