diff --git a/CHANGELOG.md b/CHANGELOG.md
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,3 +1,7 @@
+# 0.1.5.0
+
+* Fix tests with recent versions of tasy.
+
 # 0.1.4.0
 
 * Relax base upper bounds.
diff --git a/grow-vector.cabal b/grow-vector.cabal
--- a/grow-vector.cabal
+++ b/grow-vector.cabal
@@ -1,7 +1,7 @@
 name:                grow-vector
 synopsis:            Mutable vector with efficient appends
 description:         Mutable vector with efficient updates. Simple implementation on partially filled array with capacity tracking and resizing.
-version:             0.1.4.0
+version:             0.1.5.0
 license:             MIT
 license-file:        LICENSE
 copyright:           2020 Anton Gushcha
@@ -65,3 +65,4 @@
     , tasty-discover
     , tasty-hspec
     , tasty-quickcheck
+    , hspec
diff --git a/test/Data/Vector/Grow/Storable/Test.hs b/test/Data/Vector/Grow/Storable/Test.hs
--- a/test/Data/Vector/Grow/Storable/Test.hs
+++ b/test/Data/Vector/Grow/Storable/Test.hs
@@ -6,7 +6,7 @@
 import Data.Vector.Grow.Storable (GrowVector)
 import qualified Data.Vector.Grow.Storable as V
 
-import Test.Tasty.Hspec
+import Test.Hspec
 
 spec_creation :: Spec
 spec_creation = describe "vector creation" $ do
diff --git a/test/Data/Vector/Grow/Test.hs b/test/Data/Vector/Grow/Test.hs
--- a/test/Data/Vector/Grow/Test.hs
+++ b/test/Data/Vector/Grow/Test.hs
@@ -6,7 +6,7 @@
 import Data.Vector.Grow (GrowVector)
 import qualified Data.Vector.Grow as G
 
-import Test.Tasty.Hspec
+import Test.Hspec
 
 spec_creation :: Spec
 spec_creation = describe "vector creation" $ do
diff --git a/test/Data/Vector/Grow/Unboxed/Test.hs b/test/Data/Vector/Grow/Unboxed/Test.hs
--- a/test/Data/Vector/Grow/Unboxed/Test.hs
+++ b/test/Data/Vector/Grow/Unboxed/Test.hs
@@ -6,7 +6,7 @@
 import Data.Vector.Grow.Unboxed (GrowVector)
 import qualified Data.Vector.Grow.Unboxed as U
 
-import Test.Tasty.Hspec
+import Test.Hspec
 
 spec_creation :: Spec
 spec_creation = describe "vector creation" $ do
