Merge pull request #39359 from tiborvass/fix-test-compiling

integration: get tests to compile again
This commit is contained in:
Sebastiaan van Stijn 2019-06-12 22:59:59 +02:00 committed by GitHub
commit 4dc6b217d3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -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: {},