From 12eb0aebc22ecc9cb16b391ea02a7f2a519e2dd3 Mon Sep 17 00:00:00 2001 From: "Miquel A. Cabot" Date: Tue, 29 Mar 2022 22:41:20 +0200 Subject: [PATCH] fix merge errors --- test/unit/NftFactory.test.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/unit/NftFactory.test.ts b/test/unit/NftFactory.test.ts index 5bdb204e..fbcaabc8 100644 --- a/test/unit/NftFactory.test.ts +++ b/test/unit/NftFactory.test.ts @@ -348,7 +348,7 @@ describe('Nft Factory test', () => { it('#addNFTTemplate - should add a new erc721 token template', async () => { const currentNFTTemplateCount = await nftFactory.getCurrentNFTTemplateCount() - await nftFactory.addNFTTemplate(factoryOwner, contracts.template721Address) + await nftFactory.addNFTTemplate(factoryOwner, contracts.erc721TemplateAddress) expect( (await nftFactory.getCurrentNFTTemplateCount()) === currentNFTTemplateCount + 1 @@ -382,7 +382,7 @@ describe('Nft Factory test', () => { it('#addTokenTemplate - should add a new erc20 token template', async () => { const currentTokenTemplateCount = await nftFactory.getCurrentTokenTemplateCount() - await nftFactory.addTokenTemplate(factoryOwner, contracts.template20Address) + await nftFactory.addTokenTemplate(factoryOwner, contracts.erc20TemplateAddress) expect( (await nftFactory.getCurrentTokenTemplateCount()) === currentTokenTemplateCount + 1