Skip to content

Commit

Permalink
fix: fix
Browse files Browse the repository at this point in the history
  • Loading branch information
cgilbe27 committed Jan 12, 2024
1 parent 9ba4ad4 commit c6e1a0b
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/sdk/test/chain.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,12 +8,12 @@ import {
Devnet,
fromSdkDec,
fromSdkInt,
Testnet,
isRestEndptLive,
newCoinMapFromCoins,
queryChainIdWithRest,
toSdkDec,
Mainnet,
Testnet,
} from "../chain"
import { TEST_CHAIN } from "../testutil"
import { NibiruTxClient } from "../tx/txClient"
Expand Down Expand Up @@ -79,9 +79,9 @@ describe("chain/chain", () => {
})

test("queryChainIdWithRest", async () => {
const chain = Devnet(2)
const chain = Testnet(2)
const result = await queryChainIdWithRest(chain)
expect(result.ok).toEqual("nibiru-devnet-2")
expect(result.ok).toEqual("nibiru-testnet-2")
})

test("inactive chain validation cases", async () => {
Expand Down

0 comments on commit c6e1a0b

Please sign in to comment.