From 9b72f1a1d5381c62e1a59cd12f610d231a6ab33d Mon Sep 17 00:00:00 2001 From: Benjamin DeMann Date: Mon, 22 Jan 2024 10:41:08 -0700 Subject: [PATCH] make service payload smaller --- property_tests/tests/service/test/test.ts | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/property_tests/tests/service/test/test.ts b/property_tests/tests/service/test/test.ts index adcde959ee..621a28301a 100644 --- a/property_tests/tests/service/test/test.ts +++ b/property_tests/tests/service/test/test.ts @@ -23,7 +23,10 @@ const AllServicesQueryMethodArb = QueryMethodArb( ); const CanisterConfigArb = fc - .array(AllServicesQueryMethodArb, defaultArrayConstraints) + .array(AllServicesQueryMethodArb, { + ...defaultArrayConstraints, + maxLength: 45 + }) .map((queryMethods): CanisterConfig => { return { queryMethods }; });