From a478698ef766e9eb0c810c59b4f234f99bcd3eea Mon Sep 17 00:00:00 2001 From: sripwoud Date: Thu, 18 Jul 2024 12:32:50 +0200 Subject: [PATCH] refactor(lazy-imt): remove unecessary `await` in test --- packages/lazy-imt/test/LazyIMT.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/lazy-imt/test/LazyIMT.ts b/packages/lazy-imt/test/LazyIMT.ts index d34653a..0c70c8f 100644 --- a/packages/lazy-imt/test/LazyIMT.ts +++ b/packages/lazy-imt/test/LazyIMT.ts @@ -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