File tree Expand file tree Collapse file tree 5 files changed +10
-10
lines changed
tests/UnitTests/Distribution/Solver/Modular/QuickCheck Expand file tree Collapse file tree 5 files changed +10
-10
lines changed Original file line number Diff line number Diff line change @@ -19,7 +19,7 @@ library
1919 , QuickCheck
2020 , rere >= 0.1 && < 0.3
2121 , tasty < 1.6
22- , tasty-quickcheck < 0.11
22+ , tasty-quickcheck < 0.12
2323
2424 exposed-modules :
2525 Distribution.Described
Original file line number Diff line number Diff line change @@ -70,7 +70,7 @@ test-suite unit-tests
7070 , QuickCheck >= 2.14 && < 2.15
7171 , tasty >= 1.2.3 && < 1.6
7272 , tasty-hunit
73- , tasty-quickcheck < 0.11
73+ , tasty-quickcheck < 0.12
7474 , temporary
7575 , text
7676
@@ -175,7 +175,7 @@ test-suite rpmvercmp
175175 QuickCheck
176176 , tasty >= 1.2.3 && < 1.6
177177 , tasty-hunit
178- , tasty-quickcheck < 0.11
178+ , tasty-quickcheck < 0.12
179179
180180 c-sources : tests/cbits/rpmvercmp.c
181181 cc-options : -Wall
Original file line number Diff line number Diff line change @@ -135,5 +135,5 @@ Test-Suite unit-tests
135135 , Cabal-syntax
136136 , cabal-install-solver
137137 , tasty >= 1.2.3 && < 1.6
138- , tasty-quickcheck < 0.11
138+ , tasty-quickcheck < 0.12
139139 , tasty-hunit >= 0.10
Original file line number Diff line number Diff line change @@ -231,7 +231,7 @@ library
231231 edit-distance >= 0.2.2 && < 0.3 ,
232232 exceptions >= 0.10.4 && < 0.11 ,
233233 filepath >= 1.4.0.0 && < 1.6 ,
234- hashable >= 1.0 && < 1.5 ,
234+ hashable >= 1.0 && < 1.6 ,
235235 HTTP >= 4000.1.5 && < 4000.5 ,
236236 mtl >= 2.0 && < 2.4 ,
237237 network-uri >= 2.6.0.2 && < 2.7 ,
@@ -350,7 +350,7 @@ test-suite unit-tests
350350 zlib,
351351 tasty >= 1.2.3 && < 1.6 ,
352352 tasty-golden >= 2.3.1.1 && < 2.4 ,
353- tasty-quickcheck < 0.11 ,
353+ tasty-quickcheck ^ >= 0.11 ,
354354 tasty-expected-failure,
355355 tasty-hunit >= 0.10 ,
356356 tree-diff,
@@ -439,6 +439,6 @@ test-suite long-tests
439439 tasty >= 1.2.3 && < 1.6 ,
440440 tasty-expected-failure,
441441 tasty-hunit >= 0.10 ,
442- tasty-quickcheck < 0.11 ,
442+ tasty-quickcheck < 0.12 ,
443443 QuickCheck >= 2.14 && < 2.16 ,
444444 pretty-show >= 1.6.15
Original file line number Diff line number Diff line change @@ -31,7 +31,7 @@ instance IsTest QCWithSeed where
3131
3232 run options (QCWithSeed test) progress = do
3333 replay <- case lookupOption options of
34- QuickCheckReplay ( Just override) -> return override
35- QuickCheckReplay Nothing -> getStdRandom random
34+ QuickCheckReplayLegacy override -> return override
35+ _ -> getStdRandom random
3636 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