Revert "Dangling commas are now required. (#1359)"

This reverts commit a6889776f4.
This commit is contained in:
Aniket-Engg
2018-10-01 15:49:33 +05:30
parent 86581c4548
commit fa7809a4ea
10 changed files with 26 additions and 26 deletions

View File

@ -87,7 +87,7 @@ function shouldBehaveLikeERC721 (
expectEvent.inLogs(logs, 'Transfer', {
from: owner,
to: this.toWhom,
tokenId: tokenId,
tokenId: tokenId
});
});
} else {
@ -95,7 +95,7 @@ function shouldBehaveLikeERC721 (
expectEvent.inLogs(logs, 'Transfer', {
from: owner,
to: this.toWhom,
tokenId: tokenId,
tokenId: tokenId
});
});
}
@ -160,7 +160,7 @@ function shouldBehaveLikeERC721 (
expectEvent.inLogs(logs, 'Transfer', {
from: owner,
to: owner,
tokenId: tokenId,
tokenId: tokenId
});
});
@ -336,7 +336,7 @@ function shouldBehaveLikeERC721 (
expectEvent.inLogs(logs, 'Approval', {
owner: owner,
approved: address,
tokenId: tokenId,
tokenId: tokenId
});
});
};
@ -446,7 +446,7 @@ function shouldBehaveLikeERC721 (
expectEvent.inLogs(logs, 'ApprovalForAll', {
owner: owner,
operator: operator,
approved: true,
approved: true
});
});
});
@ -468,7 +468,7 @@ function shouldBehaveLikeERC721 (
expectEvent.inLogs(logs, 'ApprovalForAll', {
owner: owner,
operator: operator,
approved: true,
approved: true
});
});
@ -496,7 +496,7 @@ function shouldBehaveLikeERC721 (
expectEvent.inLogs(logs, 'ApprovalForAll', {
owner: owner,
operator: operator,
approved: true,
approved: true
});
});
});

View File

@ -41,7 +41,7 @@ function shouldBehaveLikeMintAndBurnERC721 (
expectEvent.inLogs(logs, 'Transfer', {
from: ZERO_ADDRESS,
to: newOwner,
tokenId: thirdTokenId,
tokenId: thirdTokenId
});
});
});
@ -86,7 +86,7 @@ function shouldBehaveLikeMintAndBurnERC721 (
expectEvent.inLogs(logs, 'Transfer', {
from: owner,
to: ZERO_ADDRESS,
tokenId: tokenId,
tokenId: tokenId
});
});
});