validate: please vet
Signed-off-by: Tibor Vass <tibor@docker.com> Upstream-commit: 81599222fc8f8a845b68ca15f3582e76de24a7b3 Component: engine
This commit is contained in:
@@ -237,7 +237,7 @@ func (b *Builder) Build(ctx context.Context, opt backend.BuildConfig) (*builder.
|
||||
Session: opt.Options.SessionID,
|
||||
}
|
||||
|
||||
aux := streamformatter.AuxFormatter{opt.ProgressWriter.Output}
|
||||
aux := streamformatter.AuxFormatter{Writer: opt.ProgressWriter.Output}
|
||||
|
||||
eg, ctx := errgroup.WithContext(ctx)
|
||||
|
||||
|
||||
@@ -137,10 +137,10 @@ func TestFromWithArg(t *testing.T) {
|
||||
args := NewBuildArgs(make(map[string]*string))
|
||||
|
||||
val := "sometag"
|
||||
metaArg := instructions.ArgCommand{
|
||||
metaArg := instructions.ArgCommand{KeyValuePairOptional: instructions.KeyValuePairOptional{
|
||||
Key: "THETAG",
|
||||
Value: &val,
|
||||
}
|
||||
}}
|
||||
cmd := &instructions.Stage{
|
||||
BaseName: "alpine:${THETAG}",
|
||||
}
|
||||
@@ -377,7 +377,7 @@ func TestArg(t *testing.T) {
|
||||
|
||||
argName := "foo"
|
||||
argVal := "bar"
|
||||
cmd := &instructions.ArgCommand{Key: argName, Value: &argVal}
|
||||
cmd := &instructions.ArgCommand{KeyValuePairOptional: instructions.KeyValuePairOptional{Key: argName, Value: &argVal}}
|
||||
err := dispatch(sb, cmd)
|
||||
assert.NilError(t, err)
|
||||
|
||||
|
||||
Reference in New Issue
Block a user