diff --git a/pkg/constants/dfget_super_code_test.go b/pkg/constants/dfget_super_code_test.go index 1ca825c07..d7e35d000 100644 --- a/pkg/constants/dfget_super_code_test.go +++ b/pkg/constants/dfget_super_code_test.go @@ -35,4 +35,7 @@ func init() { func (suite *DfgetSuperCodeUtilSuite) TestGetMsgByCode(c *check.C) { msg := GetMsgByCode(200) c.Check(msg, check.Equals, "success") + + msg = GetMsgByCode(612) + c.Check(msg, check.Equals, "") }