summaryrefslogtreecommitdiff
path: root/client/container_update_test.go
diff options
context:
space:
mode:
Diffstat (limited to 'client/container_update_test.go')
-rw-r--r--client/container_update_test.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/client/container_update_test.go b/client/container_update_test.go
index 46e34d6936..e151637a2b 100644
--- a/client/container_update_test.go
+++ b/client/container_update_test.go
@@ -16,7 +16,7 @@ import (
func TestContainerUpdateError(t *testing.T) {
client := &Client{
- transport: newMockClient(nil, errorMock(http.StatusInternalServerError, "Server error")),
+ client: newMockClient(errorMock(http.StatusInternalServerError, "Server error")),
}
_, err := client.ContainerUpdate(context.Background(), "nothing", container.UpdateConfig{})
if err == nil || err.Error() != "Error response from daemon: Server error" {
@@ -28,7 +28,7 @@ func TestContainerUpdate(t *testing.T) {
expectedURL := "/containers/container_id/update"
client := &Client{
- transport: newMockClient(nil, func(req *http.Request) (*http.Response, error) {
+ client: newMockClient(func(req *http.Request) (*http.Response, error) {
if !strings.HasPrefix(req.URL.Path, expectedURL) {
return nil, fmt.Errorf("Expected URL '%s', got '%s'", expectedURL, req.URL)
}