summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar Joey Hess <joey@kitenet.net>2013-11-15 17:04:40 -0400
committerGravatar Joey Hess <joey@kitenet.net>2013-11-15 17:04:40 -0400
commit19424be5a9fc1eadb74968894159ca5263b9a480 (patch)
treeb7b0fac996a77e484f14d9eb463c595d50b7edd6
parenta36ce53e197aea9c24c48a04d2affef3ddc01b08 (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.
-rw-r--r--Test.hs2
1 files changed, 1 insertions, 1 deletions
diff --git a/Test.hs b/Test.hs
index 6f26fa910..ff383710e 100644
--- a/Test.hs
+++ b/Test.hs
@@ -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)"
]