From 499f79b0ac1872f827d6b1a681c277920c6c219e Mon Sep 17 00:00:00 2001 From: Arr00 <13561405+arr00@users.noreply.github.com> Date: Mon, 30 Dec 2024 14:55:20 -0500 Subject: [PATCH] format --- test/token/ERC6909/extensions/ER6909TokenSupply.test.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/token/ERC6909/extensions/ER6909TokenSupply.test.js b/test/token/ERC6909/extensions/ER6909TokenSupply.test.js index b47c8536567..6124b1ff333 100644 --- a/test/token/ERC6909/extensions/ER6909TokenSupply.test.js +++ b/test/token/ERC6909/extensions/ER6909TokenSupply.test.js @@ -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); });