From 2dc0315c3f57dc570848255965da045c8f8927b4 Mon Sep 17 00:00:00 2001 From: Tomasz Slabon Date: Tue, 24 Aug 2021 11:47:31 +0200 Subject: [PATCH] Updated gas usage test --- test/system/liquidation.test.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/system/liquidation.test.js b/test/system/liquidation.test.js index 7f745dce..3527bc18 100644 --- a/test/system/liquidation.test.js +++ b/test/system/liquidation.test.js @@ -181,7 +181,7 @@ describeFn("System -- liquidation", () => { await expect(parseInt(tx.gasLimit)).to.be.lessThan(518000) const txReceipt = await ethers.provider.getTransactionReceipt(tx.hash) - await expect(parseInt(txReceipt.gasUsed)).to.be.lessThan(400000) + await expect(parseInt(txReceipt.gasUsed)).to.be.lessThan(390000) }) }) })