aboutsummaryrefslogtreecommitdiff
path: root/tests/Helper.hs
diff options
context:
space:
mode:
Diffstat (limited to 'tests/Helper.hs')
-rw-r--r--tests/Helper.hs3
1 files changed, 2 insertions, 1 deletions
diff --git a/tests/Helper.hs b/tests/Helper.hs
index 5979ae2..3dcc267 100644
--- a/tests/Helper.hs
+++ b/tests/Helper.hs
@@ -1,6 +1,7 @@
module Helper
( forceGetConfig
, getConfig
+ , eitherToMaybe
) where
@@ -25,7 +26,7 @@ getConfig input =
T.writeFile filePath input
config <- readConfig filePath
removeFile filePath
- putStrLn . show $ config
+ -- putStrLn . show $ config
return $ eitherToMaybe config
)