From 82440a039f58b6a1487f8042486fe8dba675df54 Mon Sep 17 00:00:00 2001 From: Christopher Crone Date: Mon, 25 Sep 2017 14:08:03 +0200 Subject: [PATCH] Do not use deprecated call for APIClient Signed-off-by: Christopher Crone --- integration/system/version_test.go | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/integration/system/version_test.go b/integration/system/version_test.go index 110bd9f56f..c1231fd383 100644 --- a/integration/system/version_test.go +++ b/integration/system/version_test.go @@ -3,15 +3,14 @@ package system import ( "testing" - "github.com/docker/docker/integration-cli/request" + "github.com/docker/docker/integration/util/request" "github.com/stretchr/testify/assert" "github.com/stretchr/testify/require" "golang.org/x/net/context" ) func TestVersion(t *testing.T) { - client, err := request.NewClient() - require.NoError(t, err) + client := request.NewAPIClient(t) version, err := client.ServerVersion(context.Background()) require.NoError(t, err)