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

updating assertion messages

This commit is contained in:
Jamie Hewitt 2022-12-22 14:17:10 +00:00
parent 5d3bcde5bd
commit 2bb4f751a2

View File

@ -697,7 +697,7 @@ describe('Marketplace flow tests', async () => {
await nft.setData(freNftAddress, publisherAccount, '1', data)
} catch (e) {
console.error(e)
assert.fail('Download failed')
assert.fail('Failed to set data in NFT ERC725 key value store', e)
}
/// ```
@ -713,7 +713,7 @@ describe('Marketplace flow tests', async () => {
console.log('Data: ', data)
} catch (e) {
console.error(e)
assert.fail('Download failed')
assert.fail('Failed to get data from NFT ERC725 key value store', e)
}
/// ```