3
0

Remove unwrapping of workflow errors

It removes important details about step ID from the error
This commit is contained in:
Denis Arh 2021-11-29 23:34:00 +01:00
parent b9f96d920a
commit 70352a0be4

View File

@ -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)
}