diff options
author | PhilFreeman <> | 2015-01-23 17:24:00 (GMT) |
---|---|---|
committer | hdiff <hdiff@hdiff.luite.com> | 2015-01-23 17:24:00 (GMT) |
commit | c043a13adaa53d90afe00f792c9a7ff2521a5b38 (patch) | |
tree | 5ee0db13ba3e9780eac00ac517a6eef1b8862188 /tests/Main.hs | |
parent | 27ee9e728366a604461898d7319a41d33cbcea7e (diff) |
version 0.6.40.6.4
Diffstat (limited to 'tests/Main.hs')
-rw-r--r-- | tests/Main.hs | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/tests/Main.hs b/tests/Main.hs index 0fa63d5..d1b1397 100644 --- a/tests/Main.hs +++ b/tests/Main.hs @@ -28,11 +28,10 @@ import System.Process import System.FilePath (pathSeparator) import System.Directory (getCurrentDirectory, getTemporaryDirectory, getDirectoryContents, findExecutable) import Text.Parsec (ParseError) -import qualified System.IO.UTF8 as U readInput :: [FilePath] -> IO [(FilePath, String)] readInput inputFiles = forM inputFiles $ \inputFile -> do - text <- U.readFile inputFile + text <- readFile inputFile return (inputFile, text) loadPrelude :: Either String (String, String, P.Environment) |