From e0a9c24ef5522000c767175b4a66c7475b9572ed Mon Sep 17 00:00:00 2001 From: "Miquel A. Cabot" Date: Fri, 10 Jun 2022 10:15:16 +0200 Subject: [PATCH] change ERC721 to NFT in nftfactory test --- test/unit/factories/NftFactory.test.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/test/unit/factories/NftFactory.test.ts b/test/unit/factories/NftFactory.test.ts index 2c07d494..03110445 100644 --- a/test/unit/factories/NftFactory.test.ts +++ b/test/unit/factories/NftFactory.test.ts @@ -325,7 +325,7 @@ describe('Nft Factory test', () => { assert((await nftFactory.checkNFT(nftAddress)) === nftAddress) }) - it('#addNFTTemplate - should add a new erc721 token template', async () => { + it('#addNFTTemplate - should add a new NFT token template', async () => { const currentNFTTemplateCount = await nftFactory.getCurrentNFTTemplateCount() await nftFactory.addNFTTemplate(factoryOwner, contracts.nftTemplateAddress) @@ -335,7 +335,7 @@ describe('Nft Factory test', () => { ) }) - it('#disableNFTTemplate - should disable an erc721 token template', async () => { + it('#disableNFTTemplate - should disable an NFT token template', async () => { const currentNFTTemplateCount = await nftFactory.getCurrentNFTTemplateCount() let nftTemplate = await nftFactory.getNFTTemplate(currentNFTTemplateCount) @@ -347,7 +347,7 @@ describe('Nft Factory test', () => { assert(nftTemplate.isActive === false) }) - it('#reactivateNFTTemplate - should reactivate an erc721 previously disabled token template', async () => { + it('#reactivateNFTTemplate - should reactivate an NFT previously disabled token template', async () => { const currentNFTTemplateCount = await nftFactory.getCurrentNFTTemplateCount() let nftTemplate = await nftFactory.getNFTTemplate(currentNFTTemplateCount)