Skip to content

Commit

Permalink
mipy
Browse files Browse the repository at this point in the history
  • Loading branch information
manojdbos committed Jan 17, 2025
1 parent 35899f0 commit 2f52578
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/test_workflow_cmds.py
Original file line number Diff line number Diff line change
Expand Up @@ -170,6 +170,6 @@ def simple_workflow() -> None:

info = _workflow_commands._get_workflow(config, wfUuid, True)
print(info)
assert info != None, "Expected info to be not None"
if info != None:
assert info is not None, "Expected info to be not None"
if info is not None:
assert info["status"] == "CANCELLED", f"Expected status to be CANCELLED"

0 comments on commit 2f52578

Please sign in to comment.