소스 검색

Merge pull request #40014 from thaJeztah/fix_golint_copy_pasta

integration-cli: fix golint (copy/paste whoops)
Kirill Kolyshkin 5 년 전
부모
커밋
58653d097c
1개의 변경된 파일2개의 추가작업 그리고 2개의 파일을 삭제
  1. 2 2
      integration-cli/checker/checker.go

+ 2 - 2
integration-cli/checker/checker.go

@@ -62,14 +62,14 @@ func DeepEquals(y interface{}) Compare {
 	}
 }
 
-// DeepEquals compares if two values are deepequal
+// HasLen checks if the value has the expected number of elements
 func HasLen(y int) Compare {
 	return func(x interface{}) assert.BoolOrComparison {
 		return cmp.Len(x, y)
 	}
 }
 
-// DeepEquals checks if the given value is nil
+// IsNil checks if the value is nil
 func IsNil() Compare {
 	return func(x interface{}) assert.BoolOrComparison {
 		return cmp.Nil(x)