From 70352a0be429bbbcd7628419435dbfff9ae7b60a Mon Sep 17 00:00:00 2001 From: Denis Arh Date: Mon, 29 Nov 2021 23:34:00 +0100 Subject: [PATCH] Remove unwrapping of workflow errors It removes important details about step ID from the error --- tests/workflows/main_test.go | 4 ---- 1 file changed, 4 deletions(-) diff --git a/tests/workflows/main_test.go b/tests/workflows/main_test.go index 84d51b419..77b686663 100644 --- a/tests/workflows/main_test.go +++ b/tests/workflows/main_test.go @@ -145,10 +145,6 @@ func mustExecWorkflow(ctx context.Context, t *testing.T, name string, p autTypes } } - if unw := errors.Unwrap(err); unw != nil { - err = unw - } - t.Fatalf("could not exec %q: %v", name, err) }