From f375dcf4df60f3317751512ab5f68981076bd4b2 Mon Sep 17 00:00:00 2001 From: Adam Worrall Date: Wed, 28 Jun 2017 18:06:55 -0700 Subject: [PATCH] Write output into the correct dir --- test/e2e/framework/google_compute.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/e2e/framework/google_compute.go b/test/e2e/framework/google_compute.go index 8b6fbedfe19..f741a04ec0a 100644 --- a/test/e2e/framework/google_compute.go +++ b/test/e2e/framework/google_compute.go @@ -188,7 +188,7 @@ func LogClusterImageSources() { } outputBytes, _ := json.MarshalIndent(images, "", " ") - filePath := filepath.Join(TestContext.OutputDir, "images.json") + filePath := filepath.Join(TestContext.ReportDir, "images.json") if err := ioutil.WriteFile(filePath, outputBytes, 0644); err != nil { Logf("cluster images sources, could not write to %q: %v", filePath, err) }