Skip to content

Commit

Permalink
remove some prints
Browse files Browse the repository at this point in the history
  • Loading branch information
manojdbos committed Jan 21, 2025
1 parent 7f317a8 commit 37800f7
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions tests/test_workflow_cmds.py
Original file line number Diff line number Diff line change
Expand Up @@ -185,7 +185,6 @@ def simple_workflow() -> None:

if info is not None:
assert info.workflowUUID == wfUuid, f"Expected workflow_uuid to be {wfUuid}"
print(info)


def test_cancel_workflow(dbos: DBOS, config: ConfigFile) -> None:
Expand All @@ -212,7 +211,6 @@ def simple_workflow() -> None:
_workflow_commands._cancel_workflow(config, wfUuid)

info = _workflow_commands._get_workflow(config, wfUuid, True)
print(info)
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 37800f7

Please sign in to comment.