This commit fixes an issue where worst case collection function would
never take the branch to compare statuses, leading to last status always
being chosen - for 3 runs of (failed, pass, pass) the outcome would be
pass and for (failed, pass, failed) it would be failed. This commit
corrects this and now statuses are properly evaluated.
This commit fixes an issue where worst case collection function would never take the branch to compare statuses, leading to last status always being chosen - for 3 runs of (failed, pass, pass) the outcome would be pass and for (failed, pass, failed) it would be failed. This commit corrects this and now statuses are properly evaluated.
Fixes #488