From 73a6ac00cebd0cf9a68a922aa0d4aa61d4ff84d6 Mon Sep 17 00:00:00 2001 From: Doug Davis Date: Wed, 7 Oct 2015 05:09:46 -0700 Subject: [PATCH] Fix help test comment to align with the code I disagree with #14546 that pushed the help text past 80 chars. Aside from it now making the help text look ugly on 80 char displays, which I use, one thing I like about the previous limitation is that it forced us to keep our options down to more reasonable phrases/words. For example, I think ` --disable-content-trust=true` could have been: ` --disable-trust=true` or even: ` --disable-ctrust=true` But regardless, let's at least make the comments match what the code does. Signed-off-by: Doug Davis --- integration-cli/docker_cli_help_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/integration-cli/docker_cli_help_test.go b/integration-cli/docker_cli_help_test.go index 19aea63bb3..325b28013b 100644 --- a/integration-cli/docker_cli_help_test.go +++ b/integration-cli/docker_cli_help_test.go @@ -76,7 +76,7 @@ func (s *DockerSuite) TestHelpTextVerify(c *check.C) { } } - // Make sure each cmd's help text fits within 80 chars and that + // Make sure each cmd's help text fits within 90 chars and that // on non-windows system we use ~ when possible (to shorten things). // Pull the list of commands from the "Commands:" section of docker help helpCmd = exec.Command(dockerBinary, "help")