diff options
| author | John MacFarlane <[email protected]> | 2018-03-18 10:46:28 -0700 |
|---|---|---|
| committer | John MacFarlane <[email protected]> | 2018-03-18 10:46:28 -0700 |
| commit | 7e389cb3dbdc11126b9bdb6a7741a65e5a94a43e (patch) | |
| tree | 0e3ca00745cc0248d803c31e748889fcd02460fa /test/Tests/Command.hs | |
| parent | daf731a001ee75ba3e09c8337278fe167ec347ae (diff) | |
Use NoImplicitPrelude and explicitly import Prelude.
This seems to be necessary if we are to use our custom Prelude
with ghci.
Closes #4464.
Diffstat (limited to 'test/Tests/Command.hs')
| -rw-r--r-- | test/Tests/Command.hs | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/test/Tests/Command.hs b/test/Tests/Command.hs index de83d0639..89ea9a741 100644 --- a/test/Tests/Command.hs +++ b/test/Tests/Command.hs @@ -1,6 +1,8 @@ +{-# LANGUAGE NoImplicitPrelude #-} module Tests.Command (findPandoc, runTest, tests) where +import Prelude import Data.Algorithm.Diff import qualified Data.ByteString as BS import Data.List (isSuffixOf) |
