Skip to content

Commit

Permalink
update test_version_compare.py
Browse files Browse the repository at this point in the history
  • Loading branch information
AkashS0510 committed Dec 12, 2024
1 parent 051b181 commit fc2d885
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/core/evaluators/test_version_compare.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ def test_evaluate_passing(evaluator_input, evaluator_data):
operation = evaluator_data["operation"]
assert result == {
"passed": True,
"message": f"{evaluator_input} is {operation} {evaluator_data['value']}"
"message": f"{evaluator_input} is {operation} {evaluator_data}"
}

# pytest -v -m failing
Expand All @@ -41,5 +41,5 @@ def test_evaluate_failing(evaluator_input, evaluator_data):
operation = evaluator_data["operation"]
assert result == {
"passed": False,
"message": f"{evaluator_input} is not {operation} {evaluator_data['value']}"
"message": f"{evaluator_input} is not {operation} {evaluator_data}"
}

0 comments on commit fc2d885

Please sign in to comment.