From 01adc25923857ef5b16973c78c8dde92991ab56f Mon Sep 17 00:00:00 2001 From: rjseibane Date: Thu, 17 Oct 2024 14:58:20 +0200 Subject: [PATCH] Fix tests --- src/test/integration/items/items.spec.ts | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/test/integration/items/items.spec.ts b/src/test/integration/items/items.spec.ts index 71922d9..e1db780 100644 --- a/src/test/integration/items/items.spec.ts +++ b/src/test/integration/items/items.spec.ts @@ -18,9 +18,9 @@ describe('# Items - Integration Tests', () => { isVerified: true, attributes: [ { - name: 'Country', + name: 'Edition', displayType: 'string', - value: 'Liberia', + value: 'Promo', operation: 'equal', }, ], @@ -46,7 +46,7 @@ describe('# Items - Integration Tests', () => { const params: TransferItemParameters = { destinationsWithOrigins: [ { - origins: ['0a3eb965a039cb15e731e2b1b2a67b7c024e6a6b59c1f7c32a9cec1d6b5bb7e7_11'], + origins: ['6babed031ab72b9fa13430af7c9579f9ab2679647bccc6fb05d26b8a91be71c9_0'], destination: 'tester', }, ], @@ -58,7 +58,7 @@ describe('# Items - Integration Tests', () => { }); it('should get item by origin', async () => { - const origin = '0a3eb965a039cb15e731e2b1b2a67b7c024e6a6b59c1f7c32a9cec1d6b5bb7e7_11'; + const origin = '6babed031ab72b9fa13430af7c9579f9ab2679647bccc6fb05d26b8a91be71c9_0'; const item = await cloudAccount.items.getItemByOrigin(origin); expect(item.origin).toEqual(origin); });