The first letter should be small in errors.New

Signed-off-by: YuPengZTE <yu.peng36@zte.com.cn>
This commit is contained in:
YuPengZTE 2016-09-01 11:22:35 +08:00
parent fbcf0a50b2
commit e7935da239

View file

@ -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