1
0
mirror of https://github.com/oceanprotocol/ocean.js.git synced 2024-11-26 20:39:05 +01:00

change ERC721 to NFT in nftfactory test

This commit is contained in:
Miquel A. Cabot 2022-06-10 10:15:16 +02:00
parent e49d957022
commit e0a9c24ef5

View File

@ -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)