From a2812895154da7a32a1b24a0535b5cba4088eb89 Mon Sep 17 00:00:00 2001 From: Tibor Vass Date: Wed, 12 Jun 2019 20:41:36 +0000 Subject: [PATCH] integration: get tests to compile again Signed-off-by: Tibor Vass --- integration/service/network_test.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/integration/service/network_test.go b/integration/service/network_test.go index 85cd8b47e7..3961963822 100644 --- a/integration/service/network_test.go +++ b/integration/service/network_test.go @@ -86,12 +86,12 @@ func TestDockerNetworkReConnect(t *testing.T) { ctx := context.Background() name := t.Name() + "dummyNet" - net.CreateNoError(t, ctx, client, name, + net.CreateNoError(ctx, t, client, name, net.WithDriver("overlay"), net.WithAttachable(), ) - c1 := container.Create(t, ctx, client, func(c *container.TestContainerConfig) { + c1 := container.Create(ctx, t, client, func(c *container.TestContainerConfig) { c.NetworkingConfig = &network.NetworkingConfig{ EndpointsConfig: map[string]*network.EndpointSettings{ name: {},