diff options
author | David Waern <david.waern@gmail.com> | 2009-11-22 14:05:06 +0000 |
---|---|---|
committer | David Waern <david.waern@gmail.com> | 2009-11-22 14:05:06 +0000 |
commit | 815f2b529053e53b9efbd086b3cfca643ba8fe4a (patch) | |
tree | 86dd17531d3601426fc2144af4c4856cd9684eda /tests/runtests.hs | |
parent | 34403469bd3acd13e93f504f73bd765d87282909 (diff) |
Follow findProgramOnPath signature change in runtests.hs
Diffstat (limited to 'tests/runtests.hs')
-rw-r--r-- | tests/runtests.hs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/runtests.hs b/tests/runtests.hs index 9acc3c38..646930ee 100644 --- a/tests/runtests.hs +++ b/tests/runtests.hs @@ -24,7 +24,7 @@ haddockEq file1 file2 = stripLinks file1 == stripLinks file2 stripLinks f = subRegex (mkRegexWithOpts "<A HREF=[^>]*>" False False) f "<A HREF=\"\">" programOnPath p = do - result <- findProgramOnPath silent p + result <- findProgramOnPath p silent return (isJust result) |