Merge pull request #2069 from knqyf263/fix/pull_test

fix(pull_test): --quiet option
This commit is contained in:
Vincent Demeester 2019-08-30 15:08:39 +02:00 committed by GitHub
commit 5e99c05010
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 {
name string
args []string
flags map[string]string
expectedTag string
}{
{
@ -64,11 +63,8 @@ func TestNewPullCommandSuccess(t *testing.T) {
expectedTag: "image:latest",
},
{
name: "simple-quiet",
args: []string{"image"},
flags: map[string]string{
"quiet": "true",
},
name: "simple-quiet",
args: []string{"--quiet", "image"},
expectedTag: "image:latest",
},
}

View File

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