fix: fix the gateway_test logic

This commit is contained in:
luhaoling 2024-03-05 15:05:46 +08:00
parent 3fc5f1a79a
commit a0fe7c35a3

View File

@ -44,7 +44,7 @@ func TestMsgGatewayCmd_GetPortFromConfig(t *testing.T) {
}
for _, tt := range tests {
t.Run(tt.portType, func(t *testing.T) {
got, _ := msgGatewayCmd.GetPortFromConfig(tt.portType)
got := msgGatewayCmd.GetPortFromConfig(tt.portType)
assert.Equal(t, tt.want, got)
})
}