diff --git a/test/SeaDrop-mintAllowList.spec.ts b/test/SeaDrop-mintAllowList.spec.ts index 018a326e..e38b93b9 100644 --- a/test/SeaDrop-mintAllowList.spec.ts +++ b/test/SeaDrop-mintAllowList.spec.ts @@ -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, diff --git a/test/SeaDrop-mintAllowedTokenHolder.spec.ts b/test/SeaDrop-mintAllowedTokenHolder.spec.ts index 3873fe42..09aa085f 100644 --- a/test/SeaDrop-mintAllowedTokenHolder.spec.ts +++ b/test/SeaDrop-mintAllowedTokenHolder.spec.ts @@ -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,