blob: 1bd3cbbc8ad1bab5de17dc6a8061f0e11198b231 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
--- a/chell-quickcheck.cabal
+++ b/chell-quickcheck.cabal
@@ -28,7 +28,7 @@
build-depends:
base >= 4.0 && < 5.0
, chell >= 0.3 && < 0.5
- , QuickCheck >= 2.3 && < 2.9
+ , QuickCheck >= 2.3 && < 2.10
, random
exposed-modules:
--- a/lib/Test/Chell/QuickCheck.hs
+++ b/lib/Test/Chell/QuickCheck.hs
@@ -100,10 +100,4 @@
roundTo n m = (n `div` m) * m
maxDiscardedTests :: QuickCheck.Testable prop => QuickCheck.Args -> prop -> Int
-#if MIN_VERSION_QuickCheck(2,5,0)
-maxDiscardedTests args p = if QuickCheck.exhaustive p
- then QuickCheck.maxDiscardRatio args
- else QuickCheck.maxDiscardRatio args * QuickCheck.maxSuccess args
-#else
-maxDiscardedTests args _ = QuickCheck.maxDiscard args
-#endif
+maxDiscardedTests args _ = QuickCheck.maxDiscardRatio args
|