Skip to content

Commit b09962c

Browse files
committed
fix lint
1 parent 4148d20 commit b09962c

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

test/token/ERC20/extensions/ERC1363.test.js

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,12 @@ contract('ERC1363', function (accounts) {
107107
});
108108

109109
it('to EOA', async function () {
110-
const { receipt } = await this.token.methods['transferFromAndCall(address,address,uint256)'](holder, other, value, { from: operator });
110+
const { receipt } = await this.token.methods['transferFromAndCall(address,address,uint256)'](
111+
holder,
112+
other,
113+
value,
114+
{ from: operator },
115+
);
111116
expectEvent(receipt, 'Transfer', {
112117
from: holder,
113118
to: other,

0 commit comments

Comments
 (0)