Skip to content

Commit

Permalink
test: fix message output
Browse files Browse the repository at this point in the history
Signed-off-by: CrazyMax <[email protected]>
  • Loading branch information
crazy-max committed Feb 5, 2024
1 parent 2c1f464 commit 56b7bbf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/bake.go
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ target "default" {

cmd := buildxCmd(sb, withDir(dir), withArgs("bake", "--progress=plain", "--set", "*.output=type=local,dest="+dirDest))
out, err := cmd.CombinedOutput()
require.NoError(t, err, out)
require.NoError(t, err, string(out))
require.Contains(t, string(out), `#1 [internal] load local bake definitions`)
require.Contains(t, string(out), `#1 reading docker-bake.hcl`)

Expand Down

0 comments on commit 56b7bbf

Please sign in to comment.