Skip to content

Commit

Permalink
Merge pull request #1491 from demergent-labs/dfx_0_15_2
Browse files Browse the repository at this point in the history
update to dfx 0.15.2
  • Loading branch information
lastmjs authored Dec 9, 2023
2 parents d403fab + 6de89ee commit ad1a19c
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -200,7 +200,7 @@ jobs:
with:
node-version: 18
- if: ${{ needs.release-candidate-deploy.outputs.should_run_tests }}
run: DFX_VERSION=0.15.1 sh -ci "$(curl -fsSL https://sdk.dfinity.org/install.sh)"
run: DFX_VERSION=0.15.2 sh -ci "$(curl -fsSL https://sdk.dfinity.org/install.sh)"
- if: ${{ needs.release-candidate-deploy.outputs.should_run_tests }}
uses: actions/cache@v3
with:
Expand Down
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 ad1a19c

Please sign in to comment.