diff options
author | Jasper Van der Jeugt <m@jaspervdj.be> | 2012-12-31 15:16:14 +0100 |
---|---|---|
committer | Jasper Van der Jeugt <m@jaspervdj.be> | 2012-12-31 15:16:14 +0100 |
commit | 24273d034850b1312c551f6ace7f0b549728cbc9 (patch) | |
tree | c17c96c372a9605fb5081311d7a6d93de4135649 /tests/Hakyll/Core | |
parent | ed03544e1b58710448fa67764f10554b8eeab8dc (diff) | |
download | hakyll-24273d034850b1312c551f6ace7f0b549728cbc9.tar.gz |
Remove verbosity from configuration
Diffstat (limited to 'tests/Hakyll/Core')
-rw-r--r-- | tests/Hakyll/Core/Runtime/Tests.hs | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/tests/Hakyll/Core/Runtime/Tests.hs b/tests/Hakyll/Core/Runtime/Tests.hs index af85f4f..fa1446f 100644 --- a/tests/Hakyll/Core/Runtime/Tests.hs +++ b/tests/Hakyll/Core/Runtime/Tests.hs @@ -13,6 +13,7 @@ import Test.HUnit (Assertion, (@?=)) -------------------------------------------------------------------------------- import Hakyll +import qualified Hakyll.Core.Logger as Logger import Hakyll.Core.Runtime import TestSuite.Util @@ -25,7 +26,7 @@ tests = testGroup "Hakyll.Core.Runtime.Tests" $ fromAssertions "run" [case01] -------------------------------------------------------------------------------- case01 :: Assertion case01 = withTestConfiguration $ \config -> do - _ <- run config $ do + _ <- run config Logger.Error $ do match "*.md" $ do route $ setExtension "html" compile $ do |