From a642ad46d4db82ddecaad2eaadbed85cf2fc6e3b Mon Sep 17 00:00:00 2001 From: Benjamin DeMann Date: Wed, 17 Jul 2024 10:29:20 -0600 Subject: [PATCH] update service prop tests to be smaller --- property_tests/tests/service/test/test.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/property_tests/tests/service/test/test.ts b/property_tests/tests/service/test/test.ts index 1194fc3cc5..c84a29d94f 100644 --- a/property_tests/tests/service/test/test.ts +++ b/property_tests/tests/service/test/test.ts @@ -24,7 +24,7 @@ const AllServicesQueryMethodArb = QueryMethodArb( const CanisterConfigArb = fc .array(AllServicesQueryMethodArb, { ...defaultArrayConstraints, - maxLength: 45 + maxLength: 30 // If the number of generated services is too large we will run out of space in the wasm custom section. }) .map((queryMethods): CanisterConfig => { return { queryMethods };