From a30cbebccfb9a793225d331feece241c67ba7427 Mon Sep 17 00:00:00 2001 From: "Paul J. Davis" Date: Sun, 8 Jan 2012 16:07:39 -0600 Subject: [PATCH] Reduce PropEr test size for speed I need to fix this so that object sizes don't explode when generating larger values. Basically, as the type generator recurses is should be adjusting the size value. --- test/jiffy_tests.erl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/jiffy_tests.erl b/test/jiffy_tests.erl index 35465be..0997bc7 100644 --- a/test/jiffy_tests.erl +++ b/test/jiffy_tests.erl @@ -10,7 +10,7 @@ proper_test_() -> PropErOpts = [ {to_file, user}, - {max_size, 30}, + {max_size, 15}, {numtests, 1000} ], {timeout, 3600, ?_assertEqual([], proper:module(jiffy_tests, PropErOpts))}.