From ac254bc7858e2633e4b6a84af52379e1c52f6f4b Mon Sep 17 00:00:00 2001 From: Medya Gh Date: Wed, 21 Aug 2019 14:25:00 -0700 Subject: [PATCH] check err --- test/integration/config_test.go | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/test/integration/config_test.go b/test/integration/config_test.go index bec9a36d71..2eafa40877 100644 --- a/test/integration/config_test.go +++ b/test/integration/config_test.go @@ -65,7 +65,10 @@ func TestConfig(t *testing.T) { } for _, tc := range tests { - stdout, stderr := mk.RunCommand(tc.cmd, false) + stdout, stderr, err := mk.RunCommand(tc.cmd, false) + if err != nil { + t.Logf("error running config test command (might be okay): %v ", err) + } if !compare(tc.stdout, stdout) { t.Fatalf("Expected stdout to be: %s. Stdout was: %s Stderr: %s", tc.stdout, stdout, stderr) }