Skip to content

Commit

Permalink
make service payload smaller
Browse files Browse the repository at this point in the history
  • Loading branch information
bdemann committed Jan 22, 2024
1 parent d2f8801 commit 9b72f1a
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion property_tests/tests/service/test/test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,10 @@ const AllServicesQueryMethodArb = QueryMethodArb(
);

const CanisterConfigArb = fc
.array(AllServicesQueryMethodArb, defaultArrayConstraints)
.array(AllServicesQueryMethodArb, {
...defaultArrayConstraints,
maxLength: 45
})
.map((queryMethods): CanisterConfig => {
return { queryMethods };
});
Expand Down

0 comments on commit 9b72f1a

Please sign in to comment.