Find and fix a lovely, lovely typo.
Cat's Eye Technologies
13 years ago
199 | 199 | filter (isFailingTest substrExc) blocks |
200 | 200 | |
201 | 201 | isFailingTest True (Test _ _ _ _ (Exception x) (Just (Exception y))) = |
202 | if y `isInfixOf` y then False else True | |
202 | if x `isInfixOf` y then False else True | |
203 | 203 | isFailingTest _ (Test _ _ _ _ x (Just y)) = |
204 | 204 | if x == y then False else True |
205 | 205 | isFailingTest _ _ = |