[#347] remove stderr check

Signed-off-by: m.malygina <m.malygina@yadro.com>
This commit is contained in:
m.malygina 2025-01-13 16:32:47 +03:00
parent 974836f1bd
commit 5a291c5b7f

View file

@ -193,7 +193,7 @@ class RemoteProcess:
)
if "No such file or directory" in terminal.stderr:
return None
elif terminal.stderr or terminal.return_code != 0:
elif terminal.return_code != 0:
raise AssertionError(f"cat process {file} was not successful: {terminal.stderr}")
return terminal.stdout