From 21dff8cbecce458e7f532cedf1ca109c1f4fe6e2 Mon Sep 17 00:00:00 2001 From: Alexandr Morozov Date: Mon, 6 Oct 2014 10:04:10 -0700 Subject: [PATCH] Fix TestBuildCacheADD to check cache in out, not in id Signed-off-by: Alexandr Morozov --- integration-cli/docker_cli_build_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/integration-cli/docker_cli_build_test.go b/integration-cli/docker_cli_build_test.go index 26df48fb46..83d687f76c 100644 --- a/integration-cli/docker_cli_build_test.go +++ b/integration-cli/docker_cli_build_test.go @@ -31,7 +31,7 @@ func TestBuildCacheADD(t *testing.T) { true); err != nil { t.Fatal(err) } - out, _, err := buildImageWithOut(name, + _, out, err := buildImageWithOut(name, fmt.Sprintf(`FROM scratch ADD %s/index.html /`, server.URL), true)