Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Make computeAlignment more efficient
Currently `Test.Tasty.Ingredients.ConsoleReporter.computeAlignment` evaluation is extremely inefficient: firstly because `data Maximum` lacks strictness annotations, and secondly because `foldTestTree` operates not even over `Maximum a`, but over `Int -> Maximum a`. The patch improves efficiency of `computeAlignment` and arguably makes its implementation simpler.
- Loading branch information