From 3eb38d2e985cbc84baa0b7d6a38a824dd872835a Mon Sep 17 00:00:00 2001 From: Javier Bullrich Date: Fri, 11 Oct 2024 13:31:28 +0200 Subject: [PATCH] fixed wrong test Fixed wrong chain set for tests --- client/tests/paseo.test.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/tests/paseo.test.ts b/client/tests/paseo.test.ts index 6666a3f8..d900745b 100644 --- a/client/tests/paseo.test.ts +++ b/client/tests/paseo.test.ts @@ -3,9 +3,9 @@ import { FaucetTests } from "./faucet.js"; const chains = [ { name: "Paseo Relay", id: -1 }, { name: "AssetHub", id: 1000 }, - { name: "Collectives", id: 1001 }, { name: "BridgeHub", id: 1002 }, { name: "People", id: 1004 }, + { name: "Coretime", id: 1005 }, ]; const tests = new FaucetTests({ faucetName: "Paseo Faucet", chains, url: "/", expectTransactionLink: false });