diff --git a/test/Test/Data/Map/Implicit.hs b/test/Test/Data/Map/Implicit.hs index a252137..4f38074 100644 --- a/test/Test/Data/Map/Implicit.hs +++ b/test/Test/Data/Map/Implicit.hs @@ -33,5 +33,6 @@ allTests :: [(String, Property)] allTests = $allProperties testGroup :: TestTree -testGroup = Tasty.localOption (QuickCheckMaxSize 25) -- it is necessary to restrain the size because the generated core would get veeeeeery big otherwise +testGroup = Tasty.localOption (QuickCheckMaxSize 5) -- anything above 25 doesn't finish in reasonable time on my laptop $ Tasty.QuickCheck.testProperties $moduleName allTests + -- I don't want to stress-tess or bench-mark it, just prove it works cause I hacked a little around it.