1
0
Fork 0
mirror of https://github.com/moby/moby.git synced 2022-11-09 12:21:53 -05:00

Merge pull request #37070 from vdemeester/fix-master

Fix logging test type
This commit is contained in:
Vincent Demeester 2018-05-15 17:52:35 +02:00 committed by GitHub
commit c0d39a1819
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -9,7 +9,6 @@ import (
"time"
"github.com/docker/docker/api/types"
"github.com/docker/docker/api/types/volume"
"github.com/docker/docker/integration/internal/container"
"github.com/docker/docker/internal/test/daemon"
"github.com/gotestyourself/gotestyourself/assert"
@ -30,10 +29,6 @@ func TestContinueAfterPluginCrash(t *testing.T) {
cancel()
defer client.PluginRemove(context.Background(), "test", types.PluginRemoveOptions{Force: true})
v, err := client.VolumeCreate(context.Background(), volume.VolumesCreateBody{})
assert.Assert(t, err)
defer client.VolumeRemove(context.Background(), v.Name, true)
ctx, cancel = context.WithTimeout(context.Background(), 60*time.Second)
id := container.Run(t, ctx, client,