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,