Skip to content

Commit

Permalink
test: Fix test_check_status
Browse files Browse the repository at this point in the history
  • Loading branch information
Ramimashkouk committed Apr 25, 2024
1 parent 682304e commit b202367
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions backend/df_designer/app/tests/services/test_process.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,8 @@ async def _run_process(cmd_to_run):
"cmd_to_run, status",
[
("sleep 10000", "running"),
("bash -c 'exit 1'", "failed"),
("echo 'Hello df_designer'", "completed"),
("bash -c exit 1", "failed"),
("echo Hello df_designer", "completed"),
],
)
async def test_check_status(self, run_process, cmd_to_run, status):
Expand Down

0 comments on commit b202367

Please sign in to comment.