Skip to content

Commit

Permalink
apply review suggestions
Browse files Browse the repository at this point in the history
  • Loading branch information
librelois committed Aug 27, 2024
1 parent cb6f5bb commit 509fc85
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/suites/dev/moonbase/test-xcm-v4/test-auto-pause-xcm.ts
Original file line number Diff line number Diff line change
Expand Up @@ -127,13 +127,13 @@ describeSuite({
allowFailures: false,
});

// The sovereign account of foreign parachain sould still have funds
// The sovereign account of foreign parachain should now be empty
const balance2 = (
await context.polkadotJs().query.system.account(sovereignAddress)
).data.free.toBigInt();
expect(balance2, "Sovereign account not empty, transfer has failed").to.eq(0n);

// The beneficiary of the XCm message should not have funds
// The beneficiary of the XCM message should now have funds
const randomBalance2 = (
await context.polkadotJs().query.system.account(random.address)
).data.free.toBigInt();
Expand Down

0 comments on commit 509fc85

Please sign in to comment.