Skip to content

Commit

Permalink
fixup! fixup! Added s-format and clear gating.yaml issues description
Browse files Browse the repository at this point in the history
  • Loading branch information
mvalik committed Feb 6, 2024
1 parent 9dfe281 commit 5f78586
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions greenwave/tests/test_summary.py
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ def test_summary_one_failed_one_missing():
testResultFailed,
testResultMissing,
]
exp = 'Of 2 required tests, 1 test failed, 1 result missing'
exp = 'Of 2 required tests, 1 result missing, 1 test failed'
assert summarize_answers(answers) == exp


Expand All @@ -114,7 +114,7 @@ def test_summary_one_passed_one_failed_one_missing():
testResultFailed,
testResultMissing,
]
exp = 'Of 3 required tests, 1 test failed, 1 result missing'
exp = 'Of 3 required tests, 1 result missing, 1 test failed'
assert summarize_answers(answers) == exp


Expand All @@ -126,7 +126,7 @@ def test_summary_one_passed_one_failed_one_missing_two_errored():
testResultMissing,
testResultErrored,
]
exp = 'Of 5 required tests, 2 tests errored, 1 test failed, 1 result missing'
exp = 'Of 5 required tests, 1 result missing, 2 tests errored, 1 test failed'
assert summarize_answers(answers) == exp


Expand Down

0 comments on commit 5f78586

Please sign in to comment.