From 2bb4f751a263c88b9a42ff261f5df83648e1acfa Mon Sep 17 00:00:00 2001 From: Jamie Hewitt Date: Thu, 22 Dec 2022 14:17:10 +0000 Subject: [PATCH] updating assertion messages --- test/integration/CodeExamples.test.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/integration/CodeExamples.test.ts b/test/integration/CodeExamples.test.ts index c7ab5738..64c73714 100644 --- a/test/integration/CodeExamples.test.ts +++ b/test/integration/CodeExamples.test.ts @@ -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) } /// ```