summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorJasper Van der Jeugt <m@jaspervdj.be>2014-04-11 21:12:01 +0200
committerJasper Van der Jeugt <m@jaspervdj.be>2014-04-11 21:12:01 +0200
commit8229765cbdf971c15e18fc8eb5a5733340b57739 (patch)
tree04d9cc96855bac300f0bd1a1dffcdad348824962 /tests
parent889e6f59f761795af3f2cb83c2a551b9c8478d66 (diff)
downloadhakyll-8229765cbdf971c15e18fc8eb5a5733340b57739.tar.gz
Fix tag dependency issue, slightly improve caching
Diffstat (limited to 'tests')
-rw-r--r--tests/Hakyll/Core/Dependencies/Tests.hs3
1 files changed, 2 insertions, 1 deletions
diff --git a/tests/Hakyll/Core/Dependencies/Tests.hs b/tests/Hakyll/Core/Dependencies/Tests.hs
index d6e3094..efa848b 100644
--- a/tests/Hakyll/Core/Dependencies/Tests.hs
+++ b/tests/Hakyll/Core/Dependencies/Tests.hs
@@ -38,7 +38,8 @@ oldFacts = M.fromList
, ("posts/02.md",
[])
, ("index.md",
- [ PatternDependency "posts/*" ["posts/01.md", "posts/02.md"]
+ [ PatternDependency "posts/*"
+ (S.fromList ["posts/01.md", "posts/02.md"])
, IdentifierDependency "posts/01.md"
, IdentifierDependency "posts/02.md"
])