diff --git a/app/appconst/appconst_test.go b/app/appconst/appconst_test.go index caa3e5823..4ab6e69ca 100644 --- a/app/appconst/appconst_test.go +++ b/app/appconst/appconst_test.go @@ -27,16 +27,16 @@ func (s *TestSuite) TestGetEthChainID() { s.Run("localnet", func() { s.EqualValues( big.NewInt(appconst.ETH_CHAIN_ID_LOCALNET_0), - appconst.GetEthChainID("nibiru-localnet-0"), + appconst.GetEthChainID("nibiru-localnet0"), ) }) s.Run("devnet", func() { want := big.NewInt(appconst.ETH_CHAIN_ID_TESTNET_1) - given := "nibiru-testnet-1" + given := "nibiru-testnet1" s.EqualValues(want, appconst.GetEthChainID(given)) want = big.NewInt(appconst.ETH_CHAIN_ID_DEVNET_2) - given = "nibiru-devnet-2" + given = "nibiru-devnet2" s.EqualValues(want, appconst.GetEthChainID(given)) }) s.Run("else", func() {