Skip to content

Commit

Permalink
fix(test): fix small changes
Browse files Browse the repository at this point in the history
  • Loading branch information
zgorizzo69 committed May 3, 2022
1 parent c40b080 commit e305865
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 5 deletions.
2 changes: 1 addition & 1 deletion test/contracts/facets/MeTokenRegistryFacet.ts
Original file line number Diff line number Diff line change
Expand Up @@ -711,7 +711,7 @@ const setup = async () => {
// should revert to cancelResubscribe now
await expect(
meTokenRegistry.cancelResubscribe(meTokenAddr0)
).to.be.revertedWith("Resubscription has started");
).to.be.revertedWith("cannot cancel resubscribe");
});
});

Expand Down
5 changes: 1 addition & 4 deletions test/contracts/migrations/UniswapSingleTransfer.ts
Original file line number Diff line number Diff line change
Expand Up @@ -193,10 +193,7 @@ const setup = async () => {
["uint24"],
[2999]
);
const isValid = await migration.isValid(
meToken.address,
badEncodedMigrationArgs
);
const isValid = await migration.isValid(badEncodedMigrationArgs);
expect(isValid).to.be.false;
});
});
Expand Down

0 comments on commit e305865

Please sign in to comment.