Skip to content

Commit

Permalink
Handle LTX input files differrent that files
Browse files Browse the repository at this point in the history
  • Loading branch information
acerv committed Jul 7, 2023
1 parent 8829882 commit 50c4259
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions libkirk/ltx_sut.py
Original file line number Diff line number Diff line change
Expand Up @@ -57,10 +57,10 @@ def setup(self, **kwargs: dict) -> None:
self._stdin = kwargs.get("stdin", None)
self._stdout = kwargs.get("stdout", None)

if not os.path.isfile(self._stdin):
if not os.path.exists(self._stdin):
raise SUTError(f"'{self._stdin}' stdin file doesn't exist")

if not os.path.isfile(self._stdout):
if not os.path.exists(self._stdout):
raise SUTError(f"'{self._stdout}' stdout file doesn't exist")

@property
Expand Down

0 comments on commit 50c4259

Please sign in to comment.