Browse Source

Fix build with older GHCs

travis
Julian Ospald 4 years ago
parent
commit
d0c3a2c9a7
No known key found for this signature in database GPG Key ID: 511B62C09D50CD28
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      hpath-io/test/Main.hs

+ 1
- 1
hpath-io/test/Main.hs View File

@@ -17,7 +17,7 @@ main :: IO ()
main = do
tmpBase <- mkdtemp "/tmp/"
writeIORef baseTmpDir (Just (tmpBase `BS.append` "/"))
putStrLn $ ("Temporary test directory at: " <> show tmpBase)
putStrLn $ ("Temporary test directory at: " ++ show tmpBase)
hspecWith
defaultConfig { configFormatter = Just progress }
$ afterAll_ deleteBaseTmpDir


Loading…
Cancel
Save