From 04b259109545992f882f7cc7c23b565243678825 Mon Sep 17 00:00:00 2001 From: srdtrk Date: Wed, 24 May 2023 17:25:25 +0300 Subject: [PATCH] imp(transfer/test): added whitespace test case --- modules/apps/transfer/keeper/msg_server_test.go | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/modules/apps/transfer/keeper/msg_server_test.go b/modules/apps/transfer/keeper/msg_server_test.go index 9b6a6125401..39d4e458ebc 100644 --- a/modules/apps/transfer/keeper/msg_server_test.go +++ b/modules/apps/transfer/keeper/msg_server_test.go @@ -150,6 +150,11 @@ func (suite *KeeperTestSuite) TestUpdateParams() { types.NewMsgUpdateParams("", types.DefaultParams()), false, }, + { + "failure: whitespace authority address", + types.NewMsgUpdateParams(" ", types.DefaultParams()), + false, + }, { "failure: unauthorized authority address", types.NewMsgUpdateParams(ibctesting.TestAccAddress, types.DefaultParams()),