Skip to content

Commit

Permalink
lower small record tests
Browse files Browse the repository at this point in the history
  • Loading branch information
lastmjs committed Dec 9, 2023
1 parent 64cbecb commit 6de89ee
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions examples/stable_b_tree_map_instruction_threshold/test/tests.ts
Original file line number Diff line number Diff line change
Expand Up @@ -15,24 +15,24 @@ export function getTests(

const keysResult =
await stableBTreeMapInstructionThresholdCanister.keysSmallRecord(
5_000
4_000
);

const valuesResult =
await stableBTreeMapInstructionThresholdCanister.valuesSmallRecord(
6_000
5_000
);

const itemsResult =
await stableBTreeMapInstructionThresholdCanister.itemsSmallRecord(
2_000
1_000
);

return {
Ok:
keysResult.length === 5_000 &&
valuesResult.length === 6_000 &&
itemsResult.length === 2_000
keysResult.length === 4_000 &&
valuesResult.length === 5_000 &&
itemsResult.length === 1_000
};
}
},
Expand Down

0 comments on commit 6de89ee

Please sign in to comment.