diff --git a/registry-hedgehog.cabal b/registry-hedgehog.cabal
--- a/registry-hedgehog.cabal
+++ b/registry-hedgehog.cabal
@@ -4,10 +4,10 @@
 --
 -- see: https://github.com/sol/hpack
 --
--- hash: 71d7514eaca16590fd1d3a950213c3d06a9e027a09f89e28d05a1c38178c61cd
+-- hash: fda61bb8a3bfeb3bcdb36cf42887c87cb1ea8b4d62ea9d7c72b825d1013ac02b
 
 name:           registry-hedgehog
-version:        0.2.0.2
+version:        0.2.0.3
 synopsis:       utilities to work with Hedgehog generators and `registry`
 description:    This library provides some functions to extract generators from a "Registry" and make stateful modifications of that Registry to precisely control the generation of data
 category:       Control
diff --git a/src/Data/Registry/Hedgehog.hs b/src/Data/Registry/Hedgehog.hs
--- a/src/Data/Registry/Hedgehog.hs
+++ b/src/Data/Registry/Hedgehog.hs
@@ -158,7 +158,7 @@
 
 -- | Create a default generator for a small list of elements
 listOf :: forall a . GenIO a -> GenIO [a]
-listOf = Gen.list (linear 0 3)
+listOf = Gen.list (linear 0 10)
 
 -- | Create a default generator for a list of elements of min elements and max elements
 listOfMinMax :: forall a . Int -> Int -> GenIO a -> GenIO [a]
@@ -166,7 +166,7 @@
 
 -- | Create a default generator for a small non-empty list of elements
 nonEmptyOf :: GenIO a -> GenIO (NonEmpty a)
-nonEmptyOf = Gen.nonEmpty (linear 1 3)
+nonEmptyOf = Gen.nonEmpty (linear 1 10)
 
 -- | Create a default generator for a Maybe, choosing evenly between Nothing and Just
 maybeOf :: forall a . GenIO a -> GenIO (Maybe a)
