summaryrefslogtreecommitdiff
path: root/tests/Hakyll/Core/Provider/Tests.hs
diff options
context:
space:
mode:
authorJasper Van der Jeugt <jaspervdj@gmail.com>2018-01-15 18:01:22 +0100
committerGitHub <noreply@github.com>2018-01-15 18:01:22 +0100
commit37bf3fe9555406eeb12485c20aa99c25065e0760 (patch)
tree474cacc73f8bd548772b0ba6a085802824e59923 /tests/Hakyll/Core/Provider/Tests.hs
parenta88a91d06e57172840ef068f261c88e21eb60665 (diff)
downloadhakyll-37bf3fe9555406eeb12485c20aa99c25065e0760.tar.gz
Various dependency bumps
- Bump binary to 0.9 - Bump pandoc to 2.1 - Bump pandoc-citeproc to 0.13 - Bump http-types to 0.11 - Bump QuickCheck to 2.11 - Bump tasty to 1.0 - Bump tasty-hunit to 0.10 - Remove system-filepath dependency
Diffstat (limited to 'tests/Hakyll/Core/Provider/Tests.hs')
-rw-r--r--tests/Hakyll/Core/Provider/Tests.hs4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/Hakyll/Core/Provider/Tests.hs b/tests/Hakyll/Core/Provider/Tests.hs
index d1c542a..ebb2a15 100644
--- a/tests/Hakyll/Core/Provider/Tests.hs
+++ b/tests/Hakyll/Core/Provider/Tests.hs
@@ -9,7 +9,7 @@ module Hakyll.Core.Provider.Tests
import Hakyll.Core.Metadata
import Hakyll.Core.Provider
import Test.Tasty (TestTree, testGroup)
-import Test.Tasty.HUnit (Assertion, assert, testCase, (@=?))
+import Test.Tasty.HUnit (Assertion, testCase, (@=?))
import TestSuite.Util
@@ -25,7 +25,7 @@ case01 :: Assertion
case01 = do
store <- newTestStore
provider <- newTestProvider store
- assert $ resourceExists provider "example.md"
+ True @=? resourceExists provider "example.md"
metadata <- resourceMetadata provider "example.md"
Just "An example" @=? lookupString "title" metadata