From e7935da2390bf458f07e9898f08a332ef9f53255 Mon Sep 17 00:00:00 2001 From: YuPengZTE Date: Thu, 1 Sep 2016 11:22:35 +0800 Subject: [PATCH] The first letter should be small in errors.New Signed-off-by: YuPengZTE --- integration-cli/docker_utils.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/integration-cli/docker_utils.go b/integration-cli/docker_utils.go index 4e7d1da3f6..edcfc88a3b 100644 --- a/integration-cli/docker_utils.go +++ b/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