Browse code

The first letter should be small in errors.New

Signed-off-by: YuPengZTE <yu.peng36@zte.com.cn>

YuPengZTE authored on 2016/09/01 12:22:35
Showing 1 changed files
... ...
@@ -519,7 +519,7 @@ func validateArgs(args ...string) error {
519 519
 			foundBusybox = key
520 520
 		}
521 521
 		if (foundBusybox != -1) && (key == foundBusybox+1) && (strings.ToLower(value) == "top") {
522
-			return errors.New("Cannot use 'busybox top' in tests on Windows. Use runSleepingContainer()")
522
+			return errors.New("cannot use 'busybox top' in tests on Windows. Use runSleepingContainer()")
523 523
 		}
524 524
 	}
525 525
 	return nil