Skip to content

Commit

Permalink
fix: test network
Browse files Browse the repository at this point in the history
  • Loading branch information
jatZama committed Oct 21, 2024
1 parent 44d68ab commit bb3e96b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/sdk/network.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -19,12 +19,12 @@ describe('network', () => {

it('get chainId', async () => {
const chainId = await getChainIdFromNetwork('https://devnet.zama.ai');
expect(chainId).toBe(8009);
expect(chainId).toBe(9000);
});

it('get network key', async () => {
const pk = await getPublicKeyFromNetwork('https://devnet.zama.ai');
expect(pk!.length).toBe(33106);
expect(pk!.length).toBe(33138);
});

it('get public key params', async () => {
Expand Down

0 comments on commit bb3e96b

Please sign in to comment.