Skip to content

Commit

Permalink
Fix linter
Browse files Browse the repository at this point in the history
  • Loading branch information
mattiascaricato committed May 21, 2023
1 parent fc1ba62 commit d454365
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions test/USDM.ts
Original file line number Diff line number Diff line change
Expand Up @@ -94,9 +94,9 @@ describe('USDM', () => {
it('fails if initialize is called again after initialization', async () => {
const { contract } = await loadFixture(deployUSDMFixture);

await expect(
contract.initialize(name, symbol, totalShares)
).to.be.revertedWith('Initializable: contract is already initialized');
await expect(contract.initialize(name, symbol, totalShares)).to.be.revertedWith(
'Initializable: contract is already initialized',
);
});
});

Expand Down

0 comments on commit d454365

Please sign in to comment.