소스 검색

The first letter should be small in errors.New

Signed-off-by: YuPengZTE <yu.peng36@zte.com.cn>
YuPengZTE 9 년 전
부모
커밋
e7935da239
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      integration-cli/docker_utils.go

+ 1 - 1
integration-cli/docker_utils.go

@@ -519,7 +519,7 @@ func validateArgs(args ...string) error {
 			foundBusybox = key
 		}
 		if (foundBusybox != -1) && (key == foundBusybox+1) && (strings.ToLower(value) == "top") {
-			return errors.New("Cannot use 'busybox top' in tests on Windows. Use runSleepingContainer()")
+			return errors.New("cannot use 'busybox top' in tests on Windows. Use runSleepingContainer()")
 		}
 	}
 	return nil