Skip to content

Commit f0bf4fc

Browse files
authored
Merge pull request docker#10402 from milas/fix-e2e-race
test: fix race in e2e build test
2 parents 72260d6 + 36625ed commit f0bf4fc

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

pkg/e2e/build_test.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -257,15 +257,15 @@ func TestBuildImageDependencies(t *testing.T) {
257257
}
258258

259259
t.Run("ClassicBuilder", func(t *testing.T) {
260-
cli := NewParallelCLI(t, WithEnv(
260+
cli := NewCLI(t, WithEnv(
261261
"DOCKER_BUILDKIT=0",
262262
"COMPOSE_FILE=./fixtures/build-dependencies/compose.yaml",
263263
))
264264
doTest(t, cli)
265265
})
266266

267267
t.Run("BuildKit", func(t *testing.T) {
268-
cli := NewParallelCLI(t, WithEnv(
268+
cli := NewCLI(t, WithEnv(
269269
"DOCKER_BUILDKIT=1",
270270
"COMPOSE_FILE=./fixtures/build-dependencies/compose.yaml",
271271
))

0 commit comments

Comments
 (0)