From 7fd056e7e04d7826ebfcadd3743a3c4403901114 Mon Sep 17 00:00:00 2001 From: Adam Reese Date: Wed, 6 Apr 2016 02:59:10 -0700 Subject: [PATCH] fix(e2e): logging typo --- test/e2e/command.go | 2 +- test/e2e/helm_test.go | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/test/e2e/command.go b/test/e2e/command.go index fba57c812..5980d72d4 100644 --- a/test/e2e/command.go +++ b/test/e2e/command.go @@ -38,7 +38,7 @@ func (h *Cmd) exec() error { h.t.Logf("standard output:\n%s", h.stdout.String()) } if h.stderr.Len() > 0 { - h.t.Log("standard error: %s\n", h.stderr.String()) + h.t.Logf("standard error: %s\n", h.stderr.String()) } h.ran = true diff --git a/test/e2e/helm_test.go b/test/e2e/helm_test.go index b0b090dd0..b093d02b5 100644 --- a/test/e2e/helm_test.go +++ b/test/e2e/helm_test.go @@ -32,7 +32,7 @@ var ( ) func logKubeEnv(k *KubeContext) { - config := k.Run("config", "view", "--flattend", "--minified").Stdout() + config := k.Run("config", "view", "--flatten", "--minified").Stdout() k.t.Logf("Kubernetes Environment\n%s", config) }