Przeglądaj źródła

The first letter should be small in errors.New

Signed-off-by: YuPengZTE <yu.peng36@zte.com.cn>
YuPengZTE 8 lat temu
rodzic
commit
e7935da239
1 zmienionych plików z 1 dodań i 1 usunięć
  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