diff options
author | Joey Hess <joey@kitenet.net> | 2013-11-15 17:04:40 -0400 |
---|---|---|
committer | Joey Hess <joey@kitenet.net> | 2013-11-15 17:04:40 -0400 |
commit | 19424be5a9fc1eadb74968894159ca5263b9a480 (patch) | |
tree | b7b0fac996a77e484f14d9eb463c595d50b7edd6 /Test.hs | |
parent | a36ce53e197aea9c24c48a04d2affef3ddc01b08 (diff) |
run each quickcheck test 1000, rather than 100 times
I've had one or two fails sent to me involving cases QuickCheck didh't
easily find, and tasty makes this easy.
Diffstat (limited to 'Test.hs')
-rw-r--r-- | Test.hs | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -78,7 +78,7 @@ main = do indirectenv <- prepare False directenv <- prepare True let tests = testGroup "Tests" - [ properties + [ localOption (QuickCheckTests 1000) properties , unitTests indirectenv "(indirect)" , unitTests directenv "(direct)" ] |