diff --git a/moler/cmd/commandtextualgeneric.py b/moler/cmd/commandtextualgeneric.py index 8502473b3..13491df18 100644 --- a/moler/cmd/commandtextualgeneric.py +++ b/moler/cmd/commandtextualgeneric.py @@ -115,7 +115,7 @@ def __init__( ) self.debug_data_received = False # Set True to log as hex all data received by command in data_received self.re_fail = ( - None # Regex to failure the command if it occurrs in the command output + None # Regex to failure the command if it occurs in the command output ) if not self._newline_chars: @@ -645,7 +645,7 @@ def failure_indiction(self, line: str, is_full_line: bool) -> None: if self.is_failure_indication(line=line, is_full_line=is_full_line): if self._is_failure_exception(line=line, is_full_line=is_full_line) is False: self.set_exception( - CommandFailure(self, f"command failed in line '{line}'") + CommandFailure(self, f"command failed in the command output line '{line}'.") ) def _is_failure_exception(self, line: str, is_full_line: bool) -> bool: diff --git a/moler/cmd/unix/iperf.py b/moler/cmd/unix/iperf.py index bac04fd47..833c2a05e 100644 --- a/moler/cmd/unix/iperf.py +++ b/moler/cmd/unix/iperf.py @@ -90,7 +90,7 @@ def _command_failure(self, line): if self._regex_helper.search_compiled(Iperf._re_command_failure, line): self.set_exception( CommandFailure( - self, f"ERROR: {self._regex_helper.group('FAILURE_MSG')}" + self, f"ERROR: found in command output: \"{self._regex_helper.group('FAILURE_MSG')}\"" ) ) raise ParsingDone diff --git a/moler/cmd/unix/iperf2.py b/moler/cmd/unix/iperf2.py index df4b89895..eb425a511 100644 --- a/moler/cmd/unix/iperf2.py +++ b/moler/cmd/unix/iperf2.py @@ -277,7 +277,7 @@ def _command_failure(self, line): if self._regex_helper.search_compiled(Iperf2._re_command_failure, line): self.set_exception( CommandFailure( - self, f"ERROR: {self._regex_helper.group('FAILURE_MSG')}" + self, f"ERROR: found in command output: \"{self._regex_helper.group('FAILURE_MSG')}\"" ) ) raise ParsingDone