summaryrefslogtreecommitdiff
path: root/configure.hs
diff options
context:
space:
mode:
Diffstat (limited to 'configure.hs')
-rw-r--r--configure.hs5
1 files changed, 2 insertions, 3 deletions
diff --git a/configure.hs b/configure.hs
index 8639af44b..bfdfa32dd 100644
--- a/configure.hs
+++ b/configure.hs
@@ -7,7 +7,7 @@ import TestConfig
tests :: [TestCase]
tests =
- [ TestCase "version" $ getVersion
+ [ TestCase "version" getVersion
, testCp "cp_a" "-a"
, testCp "cp_p" "-p"
, testCp "cp_reflink_auto" "--reflink=auto"
@@ -77,8 +77,7 @@ setup = do
writeFile testFile "test file contents"
cleanup :: IO ()
-cleanup = do
- removeDirectoryRecursive tmpDir
+cleanup = removeDirectoryRecursive tmpDir
main :: IO ()
main = do