From 0f0def79ce4564c148f34070a9fbe152211707b9 Mon Sep 17 00:00:00 2001 From: Medya Gh <medya@google.com> Date: Wed, 21 Aug 2019 13:53:35 -0700 Subject: [PATCH] change RunCommand for test config --- test/integration/config_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/integration/config_test.go b/test/integration/config_test.go index 6555c6519f..bec9a36d71 100644 --- a/test/integration/config_test.go +++ b/test/integration/config_test.go @@ -65,7 +65,7 @@ func TestConfig(t *testing.T) { } for _, tc := range tests { - stdout, stderr := mk.MustRun(tc.cmd) + stdout, stderr := mk.RunCommand(tc.cmd, false) if !compare(tc.stdout, stdout) { t.Fatalf("Expected stdout to be: %s. Stdout was: %s Stderr: %s", tc.stdout, stdout, stderr) }