Skip to content

Commit

Permalink
fix tests
Browse files Browse the repository at this point in the history
  • Loading branch information
ryanio committed Oct 16, 2023
1 parent c8fa5f3 commit 8f08109
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 6 deletions.
8 changes: 5 additions & 3 deletions test/SeaDrop-mintAllowList.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -436,9 +436,11 @@ describe(`SeaDrop - Mint Allow List (v${VERSION})`, function () {

// Update the fee recipient and creator payout address for the new token.
await differentToken.setMaxSupply(1000);
await differentToken
.connect(owner)
.updateAllowedFeeRecipient(seadrop.address, feeRecipient.address, true);
await differentToken.updateAllowedFeeRecipient(
seadrop.address,
feeRecipient.address,
true
);

await differentToken.updateCreatorPayoutAddress(
seadrop.address,
Expand Down
8 changes: 5 additions & 3 deletions test/SeaDrop-mintAllowedTokenHolder.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -399,9 +399,11 @@ describe(`SeaDrop - Mint Allowed Token Holder (v${VERSION})`, function () {

// Update the fee recipient and creator payout address for the new token.
await differentToken.setMaxSupply(1000);
await differentToken
.connect(owner)
.updateAllowedFeeRecipient(seadrop.address, feeRecipient.address, true);
await differentToken.updateAllowedFeeRecipient(
seadrop.address,
feeRecipient.address,
true
);

await differentToken.updateCreatorPayoutAddress(
seadrop.address,
Expand Down

0 comments on commit 8f08109

Please sign in to comment.