Skip to content

Commit

Permalink
Update msg_server_test.go.plush (#3501)
Browse files Browse the repository at this point in the history
Minor fix to remove warning about unused method

Co-authored-by: Danilo Pantani <[email protected]>
  • Loading branch information
francesco-defalco and Pantani authored May 23, 2023
1 parent c24912e commit 91d0080
Showing 1 changed file with 6 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -14,3 +14,9 @@ func setupMsgServer(t testing.TB) (types.MsgServer, context.Context) {
k, ctx := keepertest.<%= title(moduleName) %>Keeper(t)
return keeper.NewMsgServerImpl(*k), sdk.WrapSDKContext(ctx)
}

func TestMsgServer(t *testing.T) {
ms, ctx := setupMsgServer(t)
require.NotNil(t, ms)
require.NotNil(t, ctx)
}

0 comments on commit 91d0080

Please sign in to comment.