From b09962cdbc3c522268036179fb1daf43b61d1c3f Mon Sep 17 00:00:00 2001 From: Hadrien Croubois Date: Wed, 15 Jun 2022 15:00:27 +0200 Subject: [PATCH] fix lint --- test/token/ERC20/extensions/ERC1363.test.js | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/test/token/ERC20/extensions/ERC1363.test.js b/test/token/ERC20/extensions/ERC1363.test.js index a0636dcea06..d9ca243b6f9 100644 --- a/test/token/ERC20/extensions/ERC1363.test.js +++ b/test/token/ERC20/extensions/ERC1363.test.js @@ -107,7 +107,12 @@ contract('ERC1363', function (accounts) { }); it('to EOA', async function () { - const { receipt } = await this.token.methods['transferFromAndCall(address,address,uint256)'](holder, other, value, { from: operator }); + const { receipt } = await this.token.methods['transferFromAndCall(address,address,uint256)']( + holder, + other, + value, + { from: operator }, + ); expectEvent(receipt, 'Transfer', { from: holder, to: other,