Skip to content

Commit

Permalink
Fix tests
Browse files Browse the repository at this point in the history
  • Loading branch information
rafa-js committed Oct 17, 2024
1 parent e5a6969 commit 01adc25
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/test/integration/items/items.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,9 @@ describe('# Items - Integration Tests', () => {
isVerified: true,
attributes: [
{
name: 'Country',
name: 'Edition',
displayType: 'string',
value: 'Liberia',
value: 'Promo',
operation: 'equal',
},
],
Expand All @@ -46,7 +46,7 @@ describe('# Items - Integration Tests', () => {
const params: TransferItemParameters = {
destinationsWithOrigins: [
{
origins: ['0a3eb965a039cb15e731e2b1b2a67b7c024e6a6b59c1f7c32a9cec1d6b5bb7e7_11'],
origins: ['6babed031ab72b9fa13430af7c9579f9ab2679647bccc6fb05d26b8a91be71c9_0'],
destination: 'tester',
},
],
Expand All @@ -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);
});
Expand Down

0 comments on commit 01adc25

Please sign in to comment.