diff --git a/CHANGELOG.md b/CHANGELOG.md
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,5 +1,9 @@
 # Changelog
 
+## [1.2.0.2] - 2023-01-10
+
+- Fix build when `tasty-quickcheck < 0.9.1`
+
 ## [1.2.0.1] - 2022-05-14
 
 - Support hspec-2.10.0
diff --git a/examples/example.hs b/examples/example.hs
--- a/examples/example.hs
+++ b/examples/example.hs
@@ -1,3 +1,4 @@
+import Test.Hspec
 import Test.Tasty
 import Test.Tasty.Hspec
 
diff --git a/src/Test/Tasty/Hspec/Compat.hs b/src/Test/Tasty/Hspec/Compat.hs
--- a/src/Test/Tasty/Hspec/Compat.hs
+++ b/src/Test/Tasty/Hspec/Compat.hs
@@ -83,10 +83,10 @@
         QuickCheck.replay = replay
       }
   where
-    Tasty.QuickCheck.QuickCheckTests num_tests = T.lookupOption opts
-    Tasty.QuickCheck.QuickCheckReplay replay = T.lookupOption opts
-    Tasty.QuickCheck.QuickCheckMaxSize max_size = T.lookupOption opts
-    Tasty.QuickCheck.QuickCheckMaxRatio max_ratio = T.lookupOption opts
+    Tasty.QuickCheck.QuickCheckTests num_tests = Tasty.lookupOption opts
+    Tasty.QuickCheck.QuickCheckReplay replay = Tasty.lookupOption opts
+    Tasty.QuickCheck.QuickCheckMaxSize max_size = Tasty.lookupOption opts
+    Tasty.QuickCheck.QuickCheckMaxRatio max_ratio = Tasty.lookupOption opts
 #endif
 
 -- In hspec-core-2.10.0, Int changed to Maybe Int
diff --git a/tasty-hspec.cabal b/tasty-hspec.cabal
--- a/tasty-hspec.cabal
+++ b/tasty-hspec.cabal
@@ -1,6 +1,6 @@
 cabal-version:       2.0
 name:                tasty-hspec
-version:             1.2.0.1
+version:             1.2.0.2
 synopsis:            Hspec support for the Tasty test framework.
 description:         This package provides a Tasty provider for Hspec test
                      suites.
@@ -12,8 +12,7 @@
 maintainer:          mitchellwrosen@gmail.com
 category:            Testing
 build-type:          Simple
-
-tested-with: GHC == 8.10.7, GHC == 9.0.2, GHC == 9.2.2
+tested-with:         GHC == 9.0.2, GHC == 9.2.4, GHC == 9.4.1
 
 extra-source-files:
   .gitignore
@@ -27,7 +26,7 @@
 
 library
   build-depends:
-    base ^>= 4.9 || ^>= 4.10 || ^>= 4.11 || ^>= 4.12 || ^>= 4.13 || ^>= 4.14 || ^>= 4.15 || ^>= 4.16,
+    base ^>= 4.9 || ^>= 4.10 || ^>= 4.11 || ^>= 4.12 || ^>= 4.13 || ^>= 4.14 || ^>= 4.15 || ^>= 4.16 || ^>= 4.17,
     hspec ^>= 2.5 || ^>= 2.6 || ^>= 2.7 || ^>= 2.8 || ^>= 2.9 || ^>= 2.10,
     hspec-core ^>= 2.5 || ^>= 2.6 || ^>= 2.7 || ^>= 2.8 || ^>= 2.9 || ^>= 2.10,
     QuickCheck ^>= 2.7 || ^>= 2.8 || ^>= 2.9 || ^>= 2.10 || ^>= 2.11 || ^>= 2.12 || ^>= 2.13 || ^>= 2.14,
