Update pkg/dockerfile/dockerfile_test.go

This commit is contained in:
Tejal Desai 2020-06-04 12:28:51 -07:00 committed by GitHub
parent 3dcac1b906
commit 8a585829b8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -69,7 +69,7 @@ func Test_ParseStages_ArgValueWithQuotes(t *testing.T) {
}
if len(metaArgs) != 5 {
t.Fatalf("length of stage meta args expected to be 2, but was %d", len(metaArgs))
t.Fatalf("length of stage meta args expected to be 5, but was %d", len(metaArgs))
}
for i, expectedVal := range []string{"ubuntu:16.04", "bar", "Hello", "World", "Hello World"} {