Skip to content

Commit

Permalink
fix: correct perf test name
Browse files Browse the repository at this point in the history
  • Loading branch information
twoeths committed Mar 1, 2024
1 parent 6220d32 commit 16b7a26
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/as-sha256/test/perf/index.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ describe("digestTwoHashObjects vs digest64 vs digest", () => {
const obj2 = sha256.byteArrayToHashObject(buffer2);
// total number of time running hash for 200000 balances
const iterations = 50023;
itBench(`digestTwoHashObjects ${iterations} times`, () => {
itBench(`digest64HashObjects ${iterations} times`, () => {
for (let j = 0; j < iterations; j++) sha256.digest64HashObjects(obj1, obj2);
});

Expand Down

0 comments on commit 16b7a26

Please sign in to comment.