Skip to content

Commit

Permalink
Merge pull request moby#38416 from thaJeztah/fix_build_session_test
Browse files Browse the repository at this point in the history
Fix TestBuildWithSession, TestBuildSquashParent using wrong daemon during test
  • Loading branch information
yongtang authored Jan 6, 2019
2 parents f523876 + 9a3911c commit 545d00e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion integration/build/build_session_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ func TestBuildWithSession(t *testing.T) {
d.StartWithBusybox(t)
defer d.Stop(t)

client := testEnv.APIClient()
client := d.NewClientT(t)

dockerfile := `
FROM busybox
Expand Down
2 changes: 1 addition & 1 deletion integration/build/build_squash_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ func TestBuildSquashParent(t *testing.T) {
d.StartWithBusybox(t)
defer d.Stop(t)

client := testEnv.APIClient()
client := d.NewClientT(t)

dockerfile := `
FROM busybox
Expand Down

0 comments on commit 545d00e

Please sign in to comment.