Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Szegoo committed May 26, 2024
1 parent a345549 commit 69f6a9b
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion e2e_tests/xc-transfer/region-transfer.ts
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,8 @@ async function run(_nodeName: any, networkInfo: any, _jsArgs: any) {
let regions = await regionXApi.query.regions.regions.entries();
assert.equal(regions.length, 1);
assert.deepStrictEqual(regions[0][0].toHuman(), [regionId]);
assert.deepStrictEqual(regions[0][1].toHuman(), { owner: alice.address, record: 'Pending' });
// record is unavailable because we did not setup ismp.
assert.deepStrictEqual(regions[0][1].toHuman(), { owner: alice.address, record: 'Unavailable' });

regions = await coretimeApi.query.broker.regions.entries();
assert.equal(regions.length, 1);
Expand Down

0 comments on commit 69f6a9b

Please sign in to comment.