Skip to content

Commit

Permalink
updating assertion messages
Browse files Browse the repository at this point in the history
  • Loading branch information
jamiehewitt15 committed Dec 22, 2022
1 parent 5d3bcde commit 2bb4f75
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/integration/CodeExamples.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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)
}
/// ```

Expand All @@ -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)
}
/// ```

Expand Down

0 comments on commit 2bb4f75

Please sign in to comment.