Revert "Dangling commas are now required. (#1359)"
This reverts commit a6889776f4.
This commit is contained in:
@ -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
|
||||
});
|
||||
});
|
||||
});
|
||||
|
||||
@ -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
|
||||
});
|
||||
});
|
||||
});
|
||||
|
||||
Reference in New Issue
Block a user