Merge pull request #2265 from thaJeztah/19.03_backport_fix_pull_test

[19.03 backport] fix(pull_test): for quiet option
This commit is contained in:
Silvin Lubecki 2020-01-17 14:49:03 +01:00 committed by GitHub
commit 7a9a020688
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 7 deletions

View File

@ -50,7 +50,6 @@ func TestNewPullCommandSuccess(t *testing.T) {
testCases := []struct { testCases := []struct {
name string name string
args []string args []string
flags map[string]string
expectedTag string expectedTag string
}{ }{
{ {
@ -64,11 +63,8 @@ func TestNewPullCommandSuccess(t *testing.T) {
expectedTag: "image:latest", expectedTag: "image:latest",
}, },
{ {
name: "simple-quiet", name: "simple-quiet",
args: []string{"image"}, args: []string{"--quiet", "image"},
flags: map[string]string{
"quiet": "true",
},
expectedTag: "image:latest", expectedTag: "image:latest",
}, },
} }

View File

@ -1,2 +1 @@
Using default tag: latest
docker.io/library/image:latest docker.io/library/image:latest