Skip to content

Commit

Permalink
setting stable memory test back to 0
Browse files Browse the repository at this point in the history
  • Loading branch information
lastmjs committed Jan 17, 2024
1 parent f7075d6 commit 9352113
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions examples/stable_memory/test/tests.ts
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ export function getTests(
const result = await stableMemoryCanister.stableSize();

return {
Ok: result === 385 // This is not 0 probably because of the stable memory filesystem from ic-wasi-polyfill
Ok: result === 0
};
}
},
Expand All @@ -27,7 +27,7 @@ export function getTests(
const result = await stableMemoryCanister.stable64Size();

return {
Ok: result === 385n // This is not 0 probably because of the stable memory filesystem from ic-wasi-polyfill
Ok: result === 0n
};
}
},
Expand Down

0 comments on commit 9352113

Please sign in to comment.