Skip to content

Commit

Permalink
Don't re-export modifyMaxSize.
Browse files Browse the repository at this point in the history
  • Loading branch information
ChickenProp authored and sol committed Aug 28, 2024
1 parent 75b917d commit 89f8a76
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 3 deletions.
2 changes: 2 additions & 0 deletions ChangeLog.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@

- [#45](https://github.com/hspec/hspec-hedgehog/pull/45) @ChickenProp
- Set `propertyDiscardLimit` correctly.
- [#44](https://github.com/hspec/hspec-hedgehog/pull/44) @ChickenProp
- Don't re-export `modifyMaxSize`, which is a no-op.

## 0.2.0.0
- [#29](https://github.com/parsonsmatt/hspec-hedgehog/pull/29) @sol
Expand Down
7 changes: 4 additions & 3 deletions src/Test/Hspec/Hedgehog.hs
Original file line number Diff line number Diff line change
Expand Up @@ -84,10 +84,12 @@ module Test.Hspec.Hedgehog
( -- * The Main Function
hedgehog
-- * Hspec re-exports
--
-- | 'Test.Hspec.QuickCheck.modifyMaxSize' isn't re-exported, since
-- hedgehog has nothing that corresponds to it.
, modifyArgs
, modifyMaxSuccess
, modifyMaxDiscardRatio
, modifyMaxSize
, modifyMaxShrinks
-- * Hedgehog Re-exports
, module Hedgehog
Expand All @@ -114,8 +116,7 @@ import System.Random.SplitMix (unseedSMGen)
import Test.Hspec
import Test.Hspec.Core.Spec as Hspec
import Test.Hspec.QuickCheck (modifyArgs, modifyMaxDiscardRatio,
modifyMaxShrinks, modifyMaxSize,
modifyMaxSuccess)
modifyMaxShrinks, modifyMaxSuccess)
import Test.QuickCheck.Random (QCGen (..))
import Test.QuickCheck.Test (Args (..))

Expand Down

0 comments on commit 89f8a76

Please sign in to comment.