AssertionFailedf creates an internal error. Detail is shown: - via `errors.GetSafeDetails()`, shows redacted strings. - when formatting with `%+v`. - in Sentry reports.
(format string, args ...interface{})
| 153 | // - when formatting with `%+v`. |
| 154 | // - in Sentry reports. |
| 155 | func AssertionFailedf(format string, args ...interface{}) error { |
| 156 | return errutil.AssertionFailedWithDepthf(1, format, args...) |
| 157 | } |
| 158 | |
| 159 | // AssertionFailedWithDepthf creates an internal error |
| 160 | // with a stack trace collected at the specified depth. |
nothing calls this directly
no test coverage detected
searching dependent graphs…