Skip to content

Commit

Permalink
fix some casing issues
Browse files Browse the repository at this point in the history
  • Loading branch information
pLabarta committed Oct 7, 2024
1 parent 8d72941 commit 597d1e3
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions test/suites/dev/moonbase/test-xcm-v4/test-xcm-dry-run-api.ts
Original file line number Diff line number Diff line change
Expand Up @@ -152,12 +152,12 @@ describeSuite({
);

const dryRunCall = await polkadotJs.call.dryRunApi.dryRunCall(
{ system: { signed: alith.address } },
{ System: { signed: alith.address } },
polkadotXcmTx
);

expect(dryRunCall.isOk).to.be.true;
expect(dryRunCall.asOk.ExecutionResult.isOk).be.true;
expect(dryRunCall.asOk.executionResult.isOk).be.true;
},
});

Expand Down Expand Up @@ -202,7 +202,7 @@ describeSuite({
);

expect(dryRunXcm.isOk).to.be.true;
expect(dryRunXcm.asOk.ExecutionResult.isComplete).be.true;
expect(dryRunXcm.asOk.executionResult.isComplete).be.true;
},
});
},
Expand Down

0 comments on commit 597d1e3

Please sign in to comment.