Skip to content

Commit

Permalink
haskell#15, increase 100x the number of property tests
Browse files Browse the repository at this point in the history
  • Loading branch information
ndmitchell committed Oct 26, 2014
1 parent 4285ef6 commit 9a353ab
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/AutoTest.hs
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ instance Arbitrary QChar where

quickSafe :: Testable a => a -> IO ()
quickSafe prop = do
res <- quickCheckWithResult (stdArgs { chatty = False }) prop
res <- quickCheckWithResult stdArgs{chatty=False, maxSuccess=10000} prop
case res of
Success{} -> return ()
_ -> error $ show res

0 comments on commit 9a353ab

Please sign in to comment.