Skip to content

Commit

Permalink
Merge pull request #10402 from milas/fix-e2e-race
Browse files Browse the repository at this point in the history
test: fix race in e2e build test
  • Loading branch information
milas committed Mar 24, 2023
2 parents 72260d6 + 36625ed commit f0bf4fc
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pkg/e2e/build_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -257,15 +257,15 @@ func TestBuildImageDependencies(t *testing.T) {
}

t.Run("ClassicBuilder", func(t *testing.T) {
cli := NewParallelCLI(t, WithEnv(
cli := NewCLI(t, WithEnv(
"DOCKER_BUILDKIT=0",
"COMPOSE_FILE=./fixtures/build-dependencies/compose.yaml",
))
doTest(t, cli)
})

t.Run("BuildKit", func(t *testing.T) {
cli := NewParallelCLI(t, WithEnv(
cli := NewCLI(t, WithEnv(
"DOCKER_BUILDKIT=1",
"COMPOSE_FILE=./fixtures/build-dependencies/compose.yaml",
))
Expand Down

0 comments on commit f0bf4fc

Please sign in to comment.