From 04629cd403cc61504cf08b2b74211f9ccc3bccfa Mon Sep 17 00:00:00 2001 From: "Miquel A. Cabot" Date: Fri, 10 Jun 2022 10:08:17 +0200 Subject: [PATCH] change ERC721 to NFT in datatoken test --- test/unit/tokens/Datatoken.test.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/unit/tokens/Datatoken.test.ts b/test/unit/tokens/Datatoken.test.ts index 28fec939..bcfecfdd 100644 --- a/test/unit/tokens/Datatoken.test.ts +++ b/test/unit/tokens/Datatoken.test.ts @@ -541,9 +541,9 @@ describe('Datatoken', () => { ) }) - it('#getERC721Address - should succeed to get the parent ERC721 address', async () => { + it('#getNFTAddress - should succeed to get the parent NFT address', async () => { const address = await datatoken.getNFTAddress(datatokenAddress) - assert(address, 'Not able to get the parent ERC721 address') + assert(address, 'Not able to get the parent NFT address') }) it('#setData - should set a value into 725Y standard, if Caller has ERC20Deployer permission', async () => {