From fafa3eed33d25cc72cb17c673bd7832f82e8e7ca Mon Sep 17 00:00:00 2001 From: robotoer <1199079+robotoer@users.noreply.github.com> Date: Thu, 22 Aug 2024 01:52:52 +0000 Subject: [PATCH] [stylebot] Fixes for code style --- test/waffle-compat.test.ts | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) diff --git a/test/waffle-compat.test.ts b/test/waffle-compat.test.ts index 91c8f08..d9f3c66 100644 --- a/test/waffle-compat.test.ts +++ b/test/waffle-compat.test.ts @@ -1,10 +1,6 @@ import { expect } from "chai"; import { deployMockContract } from "../src/compat/waffle"; -import { - BaseContract, - InterfaceAbi, - ZeroAddress, -} from "ethers"; +import { BaseContract, InterfaceAbi, ZeroAddress } from "ethers"; import hre from "hardhat"; const erc20ABI = [ @@ -68,7 +64,9 @@ describe("waffle", function () { const [signer] = await hre.ethers.getSigners(); const mock = await deployMockContract(signer, erc20ABI); - await mock.mock.balanceOf.withArgs(ZeroAddress).revertsWithReason("Custom reason"); + await mock.mock.balanceOf + .withArgs(ZeroAddress) + .revertsWithReason("Custom reason"); try { await mock.balanceOf(ZeroAddress);