From 22c210297ee0049cf49b9b3c1c490dcfc2331086 Mon Sep 17 00:00:00 2001 From: Joel Smith Date: Mon, 27 Nov 2023 17:10:47 -0600 Subject: [PATCH] Fix Msg Tests --- x/clock/types/msgs_test.go | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/x/clock/types/msgs_test.go b/x/clock/types/msgs_test.go index 1c4ca96f2..4745ea429 100644 --- a/x/clock/types/msgs_test.go +++ b/x/clock/types/msgs_test.go @@ -6,8 +6,6 @@ import ( "github.com/stretchr/testify/suite" sdk "github.com/cosmos/cosmos-sdk/types" - - "github.com/CosmosContracts/juno/v18/x/drip/types" ) type MsgsTestSuite struct { @@ -35,7 +33,7 @@ func (suite *MsgsTestSuite) TestMsgUpdateParams() { msg := NewMsgUpdateParams(acc) - suite.Require().Equal(types.RouterKey, msg.Route()) + suite.Require().Equal(RouterKey, msg.Route()) suite.Require().Equal(TypeMsgUpdateParams, msg.Type()) suite.Require().NotNil(msg.GetSigners()) }