Merge pull request #38472 from thaJeztah/remove_debugging_code

TestBuildMultiStageParentConfig: remove unneeded sleep and ImageList call
This commit is contained in:
Sebastiaan van Stijn 2019-01-09 08:41:01 +01:00 committed by GitHub
commit 156b2abd0c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 0 additions and 7 deletions

View File

@ -9,7 +9,6 @@ import (
"io/ioutil"
"strings"
"testing"
"time"
"github.com/docker/docker/api/types"
"github.com/docker/docker/api/types/filters"
@ -168,12 +167,6 @@ func TestBuildMultiStageParentConfig(t *testing.T) {
resp.Body.Close()
assert.NilError(t, err)
time.Sleep(30 * time.Second)
imgs, err := apiclient.ImageList(ctx, types.ImageListOptions{})
assert.NilError(t, err)
t.Log(imgs)
image, _, err := apiclient.ImageInspectWithRaw(ctx, "build1")
assert.NilError(t, err)