diff --git a/CHANGELOG.md b/CHANGELOG.md
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,3 +1,7 @@
+## v0.2.0.2 - 2014-08-20
+
+* Fix build failure in the test suite (#6)
+
 ## v0.2.0.1 - 2014-07-26
 
 * Fix a typo in a haddock comment (#5 by @supki)
diff --git a/lifted-async.cabal b/lifted-async.cabal
--- a/lifted-async.cabal
+++ b/lifted-async.cabal
@@ -1,5 +1,5 @@
 name:                lifted-async
-version:             0.2.0.1
+version:             0.2.0.2
 synopsis:            Run lifted IO operations asynchronously and wait for their results
 homepage:            https://github.com/maoe/lifted-async
 bug-reports:         https://github.com/maoe/lifted-async/issues
@@ -48,7 +48,7 @@
     , monad-control
     , mtl
     , tasty
-    , tasty-hunit
+    , tasty-hunit == 0.9.*
     , tasty-th
 
 test-suite regression-tests
@@ -61,7 +61,7 @@
     , async
     , lifted-async
     , mtl
-    , tasty-hunit
+    , tasty-hunit == 0.9.*
     , tasty-th
 
 benchmark benchmark-lifted-async
@@ -95,5 +95,5 @@
 
 source-repository this
   type: git
-  tag: v0.2.0.1
+  tag: v0.2.0.2
   location: https://github.com/maoe/lifted-async.git
diff --git a/src/Control/Concurrent/Async/Lifted.hs b/src/Control/Concurrent/Async/Lifted.hs
--- a/src/Control/Concurrent/Async/Lifted.hs
+++ b/src/Control/Concurrent/Async/Lifted.hs
@@ -330,6 +330,7 @@
 -- delivering the result of type 'a'.
 --
 -- For example
+--
 -- > (page1, page2, page3) <- runConcurrently $ (,,)
 -- >   <$> Concurrently (getURL "url1")
 -- >   <*> Concurrently (getURL "url2")
diff --git a/tests/Test/Async/Common.hs b/tests/Test/Async/Common.hs
--- a/tests/Test/Async/Common.hs
+++ b/tests/Test/Async/Common.hs
@@ -12,7 +12,6 @@
 import Test.Tasty as X
 import Test.Tasty.HUnit as X
 import Test.Tasty.TH as X
-import Test.HUnit as X hiding (Test)
 
 import Control.Concurrent.Async.Lifted as X
 
