Skip to content

Commit 82ce0a9

Browse files
committed
update snapshots
1 parent 719c6dc commit 82ce0a9

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

packages/sdk/tests/acceptance/__snapshots__/sdk.test.ts.snap

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -264,7 +264,7 @@ exports[`sdk getParachainBalances should get expected balances for Moonbase Alph
264264
"symbol": "AMPE",
265265
},
266266
r {
267-
"amount": 0n,
267+
"amount": 10000000000000000n,
268268
"decimals": 18,
269269
"key": "alan",
270270
"originSymbol": "ALAN",

packages/sdk/tests/acceptance/sdk.test.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,14 +12,14 @@ import { getParachainBalances } from '../../src/sdk';
1212
// E2E balance test wallet
1313
const hydraDXAddress = '7MR8Qxy9sJmN6bfHMggAtFY5DwLxfrssLuTnP5rmkpD92oPH';
1414
const centrifugeAddress = '4fAKSBMGVT9jt1jkuJvXgvMbmqV2BuspFWWEmdVeFj9yRudb';
15-
const moonbeamAddress = '0x4E82143Af671Cc8201Bc7efCBbCED3A69e84405e';
15+
const moonEvmAddress = '0x4E82143Af671Cc8201Bc7efCBbCED3A69e84405e';
1616
const substrateAddress = '5FtGz8bgoCQ6pNAYLWCfxKx9ekLnX1ewP9q2TjMT2riu7sf9';
1717
const moonbaseBetaAddress = '0x08480769599E23F626efff39B89F3137e9917a40';
1818

1919
describe('sdk', () => {
2020
describe(`${getParachainBalances.name}`, () => {
2121
it(`should get expected balances for ${moonbeam.name}`, async () => {
22-
const result = await getParachainBalances(moonbeam, moonbeamAddress);
22+
const result = await getParachainBalances(moonbeam, moonEvmAddress);
2323

2424
expect(result).toMatchSnapshot();
2525
});
@@ -68,7 +68,7 @@ describe('sdk', () => {
6868
expect(result).toMatchSnapshot();
6969
});
7070
it(`should get expected balances for ${moonbaseAlpha.name}`, async () => {
71-
const result = await getParachainBalances(moonbaseAlpha, moonbeamAddress);
71+
const result = await getParachainBalances(moonbaseAlpha, moonEvmAddress);
7272

7373
expect(result).toMatchSnapshot();
7474
});

0 commit comments

Comments
 (0)