Remove unwrapping of workflow errors

It removes important details about step ID from the error
This commit is contained in:
Denis Arh
2021-12-02 10:48:59 +01:00
parent b9f96d920a
commit 70352a0be4
-4
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)
}