Skip to content

Commit

Permalink
format
Browse files Browse the repository at this point in the history
  • Loading branch information
arr00 committed Dec 30, 2024
1 parent 15ece65 commit 499f79b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/token/ERC6909/extensions/ER6909TokenSupply.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -22,11 +22,11 @@ describe.only('ERC6909TokenSupply', function () {
await this.token.$_mint(this.holder, 1n, 1000n);
});

it('Minting tokens increases the total supply', async function () {
it('minting tokens increases the total supply', async function () {
return expect(this.token.totalSupply(1n)).to.eventually.be.equal(1000n);
});

it('Burning tokens decreases the total supply', async function () {
it('burning tokens decreases the total supply', async function () {
await this.token.$_burn(this.holder, 1n, 500n);
return expect(this.token.totalSupply(1n)).to.eventually.be.equal(500n);
});
Expand Down

0 comments on commit 499f79b

Please sign in to comment.