From b0b6880fcbc79dfec16d21f8c8bf169c03b34ab3 Mon Sep 17 00:00:00 2001 From: Rodrigo Quelhas <22591718+RomarQ@users.noreply.github.com> Date: Thu, 12 Dec 2024 12:09:29 +0000 Subject: [PATCH] test(smoke): Correctly check egress hmrp channels (#3089) --- test/suites/smoke/test-xcm-failures.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/suites/smoke/test-xcm-failures.ts b/test/suites/smoke/test-xcm-failures.ts index 9b0510d4dc..800ba52cd7 100644 --- a/test/suites/smoke/test-xcm-failures.ts +++ b/test/suites/smoke/test-xcm-failures.ts @@ -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])];