diff --git a/logrus/logrusentry_test.go b/logrus/logrusentry_test.go index a00e54d3f..5a13a2b16 100644 --- a/logrus/logrusentry_test.go +++ b/logrus/logrusentry_test.go @@ -152,7 +152,7 @@ func Test_entryToEvent(t *testing.T) { Level: "fatal", Extra: map[string]interface{}{}, Exception: []sentry.Exception{ - {Type: "error", Value: "things failed"}, + {Type: "*errors.errorString", Value: "things failed", Stacktrace: &sentry.Stacktrace{Frames: []sentry.Frame{}}}, }, }, }, @@ -181,7 +181,7 @@ func Test_entryToEvent(t *testing.T) { Level: "fatal", Extra: map[string]interface{}{}, Exception: []sentry.Exception{ - {Type: "error", Value: "failure", Stacktrace: &sentry.Stacktrace{Frames: []sentry.Frame{}}}, + {Type: "*errors.withStack", Value: "failure", Stacktrace: &sentry.Stacktrace{Frames: []sentry.Frame{}}}, }, }, },