diff --git a/lame-tester.cabal b/lame-tester.cabal
--- a/lame-tester.cabal
+++ b/lame-tester.cabal
@@ -1,5 +1,5 @@
 Name:                lame-tester
-Version:             1.1
+Version:             1.2
 Cabal-version:       >=1.16.0
 License:             BSD3
 License-File:        LICENSE.txt
@@ -35,9 +35,8 @@
   hs-source-dirs:   test
   default-language: Haskell2010
   build-depends:
-    base                       >= 4.6 && < 5,
-    containers                 >= 0.5,
-    HUnit                      >= 1.2,
-    lame-tester                >= 1.1,
-    test-framework             >= 0.8,
-    test-framework-hunit       >= 0.3
+    base        >= 4.6 && < 5,
+    containers  >= 0.5,
+    lame-tester >= 1.1,
+    tasty       >= 0.10,
+    tasty-hunit >= 0.9
diff --git a/test/Main.hs b/test/Main.hs
--- a/test/Main.hs
+++ b/test/Main.hs
@@ -1,7 +1,7 @@
 module Main where
 
-import qualified UnitTests
+import Test.Tasty(defaultMain)
 
-import Test.Framework.Runners.Console (defaultMain)
+import qualified UnitTests
 
-main = defaultMain $ [UnitTests.tests]
+main = defaultMain UnitTests.tests
