diff --git a/examples/stable_b_tree_map_instruction_threshold/test/tests.ts b/examples/stable_b_tree_map_instruction_threshold/test/tests.ts index 22dfdaab11..291d58c298 100644 --- a/examples/stable_b_tree_map_instruction_threshold/test/tests.ts +++ b/examples/stable_b_tree_map_instruction_threshold/test/tests.ts @@ -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 }; } },