From d0c3a2c9a795c4d3cbba654e005c21f689ef2024 Mon Sep 17 00:00:00 2001 From: Julian Ospald Date: Sat, 4 Jan 2020 18:14:52 +0100 Subject: [PATCH] Fix build with older GHCs --- hpath-io/test/Main.hs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hpath-io/test/Main.hs b/hpath-io/test/Main.hs index f3d1d7b..15a1aa2 100644 --- a/hpath-io/test/Main.hs +++ b/hpath-io/test/Main.hs @@ -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