summaryrefslogtreecommitdiff
path: root/tests/Hakyll/Core/Runtime/Tests.hs
diff options
context:
space:
mode:
authorJasper Van der Jeugt <m@jaspervdj.be>2016-10-17 11:05:25 +0200
committerJasper Van der Jeugt <m@jaspervdj.be>2016-10-17 11:05:25 +0200
commit2db34f050aa250c4c11a35cb201cc1c7a28d083d (patch)
tree380377956068c0bb0499dc5366249f9e1ff34458 /tests/Hakyll/Core/Runtime/Tests.hs
parent43e78fcdc755adcac61b3d2f1645037d3eff8fbb (diff)
downloadhakyll-2db34f050aa250c4c11a35cb201cc1c7a28d083d.tar.gz
Move from test-framework to tasty
Diffstat (limited to 'tests/Hakyll/Core/Runtime/Tests.hs')
-rw-r--r--tests/Hakyll/Core/Runtime/Tests.hs6
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/Hakyll/Core/Runtime/Tests.hs b/tests/Hakyll/Core/Runtime/Tests.hs
index 1bdfc60..5f27854 100644
--- a/tests/Hakyll/Core/Runtime/Tests.hs
+++ b/tests/Hakyll/Core/Runtime/Tests.hs
@@ -8,8 +8,8 @@ module Hakyll.Core.Runtime.Tests
--------------------------------------------------------------------------------
import qualified Data.ByteString as B
import System.FilePath ((</>))
-import Test.Framework (Test, testGroup)
-import Test.HUnit (Assertion, (@?=))
+import Test.Tasty (TestTree, testGroup)
+import Test.Tasty.HUnit (Assertion, (@?=))
--------------------------------------------------------------------------------
@@ -20,7 +20,7 @@ import TestSuite.Util
--------------------------------------------------------------------------------
-tests :: Test
+tests :: TestTree
tests = testGroup "Hakyll.Core.Runtime.Tests" $
fromAssertions "run" [case01, case02]