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 {
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