Skip to content

Commit

Permalink
refactor(lazy-imt): remove unecessary await in test
Browse files Browse the repository at this point in the history
  • Loading branch information
sripwoud committed Aug 7, 2024
1 parent 63647f4 commit a478698
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/lazy-imt/test/LazyIMT.ts
Original file line number Diff line number Diff line change
Expand Up @@ -348,7 +348,7 @@ describe("LazyIMT", () => {
const staticRoot = await lazyIMTTest.staticRoot(depth)

// If they match, proof is valid
await expect(calculatedRoot).to.be.equal(staticRoot)
expect(calculatedRoot).to.be.equal(staticRoot)
}

// Done with test, revert the tree state
Expand Down

0 comments on commit a478698

Please sign in to comment.