fix(pull_test): for quiet option

Signed-off-by: Teppei Fukuda <knqyf263@gmail.com>
This commit is contained in:
knqyf263 2019-08-27 18:23:13 +09:00
parent f2163dd6a7
commit 7634872a39
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