From 2fae3d2693648d1c0f5cc079f37aaba5116ba5f9 Mon Sep 17 00:00:00 2001 From: Sebastiaan van Stijn Date: Mon, 25 Apr 2016 19:17:17 +0200 Subject: [PATCH] skip TestAuthApi if no network is available Signed-off-by: Sebastiaan van Stijn --- integration-cli/docker_api_auth_test.go | 1 + 1 file changed, 1 insertion(+) diff --git a/integration-cli/docker_api_auth_test.go b/integration-cli/docker_api_auth_test.go index 63e78ab520..798c3b5eaa 100644 --- a/integration-cli/docker_api_auth_test.go +++ b/integration-cli/docker_api_auth_test.go @@ -10,6 +10,7 @@ import ( // Test case for #22244 func (s *DockerSuite) TestAuthApi(c *check.C) { + testRequires(c, Network) config := types.AuthConfig{ Username: "no-user", Password: "no-password",