Преглед изворни кода

Do not use deprecated call for APIClient

Signed-off-by: Christopher Crone <christopher.crone@docker.com>
Christopher Crone пре 7 година
родитељ
комит
82440a039f
1 измењених фајлова са 2 додато и 3 уклоњено
  1. 2 3
      integration/system/version_test.go

+ 2 - 3
integration/system/version_test.go

@@ -3,15 +3,14 @@ package system
 import (
 import (
 	"testing"
 	"testing"
 
 
-	"github.com/docker/docker/integration-cli/request"
+	"github.com/docker/docker/integration/util/request"
 	"github.com/stretchr/testify/assert"
 	"github.com/stretchr/testify/assert"
 	"github.com/stretchr/testify/require"
 	"github.com/stretchr/testify/require"
 	"golang.org/x/net/context"
 	"golang.org/x/net/context"
 )
 )
 
 
 func TestVersion(t *testing.T) {
 func TestVersion(t *testing.T) {
-	client, err := request.NewClient()
-	require.NoError(t, err)
+	client := request.NewAPIClient(t)
 
 
 	version, err := client.ServerVersion(context.Background())
 	version, err := client.ServerVersion(context.Background())
 	require.NoError(t, err)
 	require.NoError(t, err)