From 705f4a0fb11ac7ddd78b46cb503f125e550ea183 Mon Sep 17 00:00:00 2001 From: Tomasz Polaczyk Date: Thu, 12 Dec 2024 12:06:03 +0100 Subject: [PATCH] Fix total issuance test --- test/suites/dev-tanssi-relay/balances/test_balances.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/suites/dev-tanssi-relay/balances/test_balances.ts b/test/suites/dev-tanssi-relay/balances/test_balances.ts index 3286a2d54..0da240587 100644 --- a/test/suites/dev-tanssi-relay/balances/test_balances.ts +++ b/test/suites/dev-tanssi-relay/balances/test_balances.ts @@ -20,7 +20,7 @@ describeSuite({ title: "Checking total issuance is correct on genesis", test: async function () { const totalIssuance = (await polkadotJs.query.balances.totalIssuance()).toBigInt(); - expect(totalIssuance).toBe(12_000_000_000_033_333_333n); + expect(totalIssuance).toBe(12_000_000_000_133_333_332n); }, });