summaryrefslogtreecommitdiff
path: root/integration-cli/docker_cli_help_test.go
diff options
context:
space:
mode:
authorDerek McGowan <derek@mcgstyle.net>2015-07-24 01:59:42 -0700
committerDerek McGowan <derek@mcgstyle.net>2015-07-24 16:31:18 -0700
commit259cadb0b19a9049302e78fec529b0105efabb1d (patch)
tree63c636fb54210a0b53a58c34e4b6e3627c14dfac /integration-cli/docker_cli_help_test.go
parent3e90b12d42f6f937639edafa4b2ddc12badf8895 (diff)
downloaddocker-259cadb0b19a9049302e78fec529b0105efabb1d.tar.gz
Rename to flags and environment variables to content trust
Update help line to allow 90 characters instead of 80 The trust flag pushes out the help description column wider, requiring more room to display help messages. Signed-off-by: Derek McGowan <derek@mcgstyle.net> (github: dmcgowan)
Diffstat (limited to 'integration-cli/docker_cli_help_test.go')
-rw-r--r--integration-cli/docker_cli_help_test.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/integration-cli/docker_cli_help_test.go b/integration-cli/docker_cli_help_test.go
index 789132834d..311308359a 100644
--- a/integration-cli/docker_cli_help_test.go
+++ b/integration-cli/docker_cli_help_test.go
@@ -132,7 +132,7 @@ func (s *DockerSuite) TestHelpTextVerify(c *check.C) {
// Check each line for lots of stuff
lines := strings.Split(out, "\n")
for _, line := range lines {
- if len(line) > 80 {
+ if len(line) > 90 {
c.Fatalf("Help for %q is too long(%d chars):\n%s", cmd,
len(line), line)
}