From 7e5aef3b8279dd5c493093c4ef6249fceca39b81 Mon Sep 17 00:00:00 2001 From: expertdicer Date: Tue, 11 Feb 2025 16:42:26 +0700 Subject: [PATCH] chore: update unit test --- x/devgas/client/cli/cli_test.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/x/devgas/client/cli/cli_test.go b/x/devgas/client/cli/cli_test.go index 842297787..2cf0ef657 100644 --- a/x/devgas/client/cli/cli_test.go +++ b/x/devgas/client/cli/cli_test.go @@ -21,8 +21,8 @@ import ( svrcmd "github.com/cosmos/cosmos-sdk/server/cmd" "github.com/NibiruChain/nibiru/v2/x/common/testutil" - devgas "github.com/NibiruChain/nibiru/v2/x/devgas" "github.com/NibiruChain/nibiru/v2/x/devgas/client/cli" + "github.com/NibiruChain/nibiru/v2/x/devgas/devgasmodule" ) // CLITestSuite: Tests all tx commands for the module. @@ -43,7 +43,7 @@ func TestCLITestSuite(t *testing.T) { // Runs once before the entire test suite. func (s *CLITestSuite) SetupSuite() { - s.encCfg = testutilmod.MakeTestEncodingConfig(devgas.AppModuleBasic{}) + s.encCfg = testutilmod.MakeTestEncodingConfig(devgasmodule.AppModuleBasic{}) s.keyring = keyring.NewInMemory(s.encCfg.Codec) s.baseCtx = sdkclient.Context{}. WithKeyring(s.keyring).