Skip to content

Commit

Permalink
update default size of the stable memory
Browse files Browse the repository at this point in the history
  • Loading branch information
bdemann committed Apr 3, 2024
1 parent 9a436cc commit 569f284
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions examples/stable_memory/test/tests.ts
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,10 @@ export function getTests(
name: 'stable size',
test: async () => {
const result = await stableMemoryCanister.stableSize();
console.log(result);

return {
Ok: result === 0
Ok: result === 513
};
}
},
Expand All @@ -27,7 +28,7 @@ export function getTests(
const result = await stableMemoryCanister.stable64Size();

return {
Ok: result === 0n
Ok: result === 513n
};
}
},
Expand Down

0 comments on commit 569f284

Please sign in to comment.