Skip to content

Commit

Permalink
test(smoke): Correctly check egress hmrp channels (#3089)
Browse files Browse the repository at this point in the history
  • Loading branch information
RomarQ authored Dec 12, 2024
1 parent ba9c9c6 commit b0b6880
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/suites/smoke/test-xcm-failures.ts
Original file line number Diff line number Diff line change
Expand Up @@ -412,7 +412,7 @@ describeSuite({
(await relayApi.query.hrmp.hrmpIngressChannelsIndex(paraId)) as any
).map((a: any) => a.toNumber());
const outChannels = (
(await relayApi.query.hrmp.hrmpIngressChannelsIndex(paraId)) as any
(await relayApi.query.hrmp.hrmpEgressChannelsIndex(paraId)) as any
).map((a: any) => a.toNumber());
const channels = [...new Set([...inChannels, ...outChannels])];

Expand Down

0 comments on commit b0b6880

Please sign in to comment.