Skip to content

Commit

Permalink
Fixed tests due new calls
Browse files Browse the repository at this point in the history
  • Loading branch information
dbeltrankyl committed Nov 27, 2024
1 parent 54f7897 commit 125c2fc
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion test/unit/test_job_list-pytest.py
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,7 @@ def test_check_relationship_is_ready(job_status, parent_status, target_status_ke
}
}

unsatisfated, satisfated = JobList._check_relationship_is_ready(job, target_status_key)
unsatisfated, satisfated = JobList._check_relationship_is_ready(job)

assert [j.name for j in unsatisfated] == expected_unsatisfated
assert [j.name for j in satisfated] == expected_satisfated
2 changes: 1 addition & 1 deletion test/unit/test_monitor.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,5 +23,5 @@ def test_check_final_status():

# Assert the expected values
assert color == monitor_instance._table[Status.KEY_TO_VALUE["COMPLETED"]]
assert label == "label"
assert label == 0
assert dashed is True

0 comments on commit 125c2fc

Please sign in to comment.