aboutsummaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorDavid Waern <david.waern@gmail.com>2009-11-22 14:05:06 +0000
committerDavid Waern <david.waern@gmail.com>2009-11-22 14:05:06 +0000
commit815f2b529053e53b9efbd086b3cfca643ba8fe4a (patch)
tree86dd17531d3601426fc2144af4c4856cd9684eda /tests
parent34403469bd3acd13e93f504f73bd765d87282909 (diff)
Follow findProgramOnPath signature change in runtests.hs
Diffstat (limited to 'tests')
-rw-r--r--tests/runtests.hs2
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)