Skip to content

Commit

Permalink
fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
Amxx committed Jun 15, 2022
1 parent 4148d20 commit b09962c
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion test/token/ERC20/extensions/ERC1363.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down

0 comments on commit b09962c

Please sign in to comment.