From 1db161768ccfc67d36034f06db36451b6cc6a214 Mon Sep 17 00:00:00 2001 From: Xiaoxu Chen Date: Fri, 9 Oct 2015 14:53:56 +0800 Subject: [PATCH] update docker_cli_proxy_test.go Part of #16756 Signed-off-by: Xiaoxu Chen --- integration-cli/docker_cli_proxy_test.go | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/integration-cli/docker_cli_proxy_test.go b/integration-cli/docker_cli_proxy_test.go index b804075b8c..e0b60fcc59 100644 --- a/integration-cli/docker_cli_proxy_test.go +++ b/integration-cli/docker_cli_proxy_test.go @@ -38,7 +38,8 @@ func (s *DockerDaemonSuite) TestCliProxyProxyTCPSock(c *check.C) { } } - c.Assert(ip, checker.Equals, "") + c.Assert(ip, checker.Not(checker.Equals), "") + err = s.d.Start("-H", "tcp://"+ip+":2375") c.Assert(err, checker.IsNil) cmd := exec.Command(dockerBinary, "info")