mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
Do not use deprecated call for APIClient
Signed-off-by: Christopher Crone <christopher.crone@docker.com>
This commit is contained in:
parent
d43dac2202
commit
82440a039f
1 changed files with 2 additions and 3 deletions
|
@ -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()
|
client := request.NewAPIClient(t)
|
||||||
require.NoError(t, err)
|
|
||||||
|
|
||||||
version, err := client.ServerVersion(context.Background())
|
version, err := client.ServerVersion(context.Background())
|
||||||
require.NoError(t, err)
|
require.NoError(t, err)
|
||||||
|
|
Loading…
Add table
Reference in a new issue