complete the comment of builtin.Contains

Change-Id: I949e2ccda53960dd12f64bda3c9c69513f59d4ed
This commit is contained in:
buyuxiang
2021-12-30 18:27:58 +08:00
parent a1e7d0e13c
commit e3b481a273

View File

@@ -87,7 +87,7 @@ func convertInt(value interface{}) (int, error) {
}
}
// Contains assert whether actual
// Contains assert whether actual element contains expected element
func Contains(t assert.TestingT, expected, actual interface{}, msgAndArgs ...interface{}) bool {
return assert.Contains(t, actual, expected, msgAndArgs)
}