Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion quickcheck/tasty-quickcheck.cabal
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ library
tagged < 0.9,
tasty >= 1.5.1 && < 1.6,
random < 1.4,
QuickCheck >= 2.10 && < 2.18,
QuickCheck >= 2.10 && < 2.19,
optparse-applicative < 0.20

default-language: Haskell2010
Expand Down
2 changes: 1 addition & 1 deletion quickcheck/tests/test.hs
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ main =

-- Run the test suite manually and check that progress does not go beyond 100%
, testProperty "Percent Complete" $
withMaxSuccess 1000 $ \(_ :: Int) -> ioProperty $ threadDelay 10000
withNumTests 1000 $ \(_ :: Int) -> ioProperty $ threadDelay 10000
, testProperty "Number of shrinks" $
expectFailure $ withMaxSize 1000 $ \(Large (x :: Int)) ->
ioProperty $ threadDelay 100000 >> pure (x <= 100)
Expand Down
Loading