File tree 5 files changed +10
-10
lines changed
tests/UnitTests/Distribution/Solver/Modular/QuickCheck
5 files changed +10
-10
lines changed Original file line number Diff line number Diff line change @@ -19,7 +19,7 @@ library
19
19
, QuickCheck
20
20
, rere >= 0.1 && < 0.3
21
21
, tasty < 1.6
22
- , tasty-quickcheck < 0.11
22
+ , tasty-quickcheck < 0.12
23
23
24
24
exposed-modules :
25
25
Distribution.Described
Original file line number Diff line number Diff line change @@ -70,7 +70,7 @@ test-suite unit-tests
70
70
, QuickCheck >= 2.14 && < 2.15
71
71
, tasty >= 1.2.3 && < 1.6
72
72
, tasty-hunit
73
- , tasty-quickcheck < 0.11
73
+ , tasty-quickcheck < 0.12
74
74
, temporary
75
75
, text
76
76
@@ -175,7 +175,7 @@ test-suite rpmvercmp
175
175
QuickCheck
176
176
, tasty >= 1.2.3 && < 1.6
177
177
, tasty-hunit
178
- , tasty-quickcheck < 0.11
178
+ , tasty-quickcheck < 0.12
179
179
180
180
c-sources : tests/cbits/rpmvercmp.c
181
181
cc-options : -Wall
Original file line number Diff line number Diff line change @@ -135,5 +135,5 @@ Test-Suite unit-tests
135
135
, Cabal-syntax
136
136
, cabal-install-solver
137
137
, tasty >= 1.2.3 && < 1.6
138
- , tasty-quickcheck < 0.11
138
+ , tasty-quickcheck < 0.12
139
139
, tasty-hunit >= 0.10
Original file line number Diff line number Diff line change @@ -231,7 +231,7 @@ library
231
231
edit-distance >= 0.2.2 && < 0.3 ,
232
232
exceptions >= 0.10.4 && < 0.11 ,
233
233
filepath >= 1.4.0.0 && < 1.6 ,
234
- hashable >= 1.0 && < 1.5 ,
234
+ hashable >= 1.0 && < 1.6 ,
235
235
HTTP >= 4000.1.5 && < 4000.5 ,
236
236
mtl >= 2.0 && < 2.4 ,
237
237
network-uri >= 2.6.0.2 && < 2.7 ,
@@ -350,7 +350,7 @@ test-suite unit-tests
350
350
zlib,
351
351
tasty >= 1.2.3 && < 1.6 ,
352
352
tasty-golden >= 2.3.1.1 && < 2.4 ,
353
- tasty-quickcheck < 0.11 ,
353
+ tasty-quickcheck ^ >= 0.11 ,
354
354
tasty-expected-failure,
355
355
tasty-hunit >= 0.10 ,
356
356
tree-diff,
@@ -439,6 +439,6 @@ test-suite long-tests
439
439
tasty >= 1.2.3 && < 1.6 ,
440
440
tasty-expected-failure,
441
441
tasty-hunit >= 0.10 ,
442
- tasty-quickcheck < 0.11 ,
442
+ tasty-quickcheck < 0.12 ,
443
443
QuickCheck >= 2.14 && < 2.16 ,
444
444
pretty-show >= 1.6.15
Original file line number Diff line number Diff line change @@ -31,7 +31,7 @@ instance IsTest QCWithSeed where
31
31
32
32
run options (QCWithSeed test) progress = do
33
33
replay <- case lookupOption options of
34
- QuickCheckReplay ( Just override) -> return override
35
- QuickCheckReplay Nothing -> getStdRandom random
34
+ QuickCheckReplayLegacy override -> return override
35
+ _ -> getStdRandom random
36
36
notice normal $ " Using --quickcheck-replay=" ++ show replay
37
- run (setOption (QuickCheckReplay ( Just replay) ) options) test progress
37
+ run (setOption (QuickCheckReplayLegacy replay) options) test progress
You can’t perform that action at this time.
0 commit comments