Skip to content

Commit

Permalink
fix tests
Browse files Browse the repository at this point in the history
  • Loading branch information
samber committed Jan 3, 2025
1 parent 271a111 commit a765a18
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions converter_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,6 @@ func TestAttrToSentryEvent(t *testing.T) {
slog.Attr{Key: "email", Value: slog.StringValue("user_email")},
slog.Attr{Key: "ip_address", Value: slog.StringValue("user_ip_address")},
slog.Attr{Key: "username", Value: slog.StringValue("user_username")},
slog.Attr{Key: "segment", Value: slog.StringValue("user_segment")},
slog.Attr{Key: "name", Value: slog.StringValue("user_name")},
)},
expected: &sentry.Event{
Expand All @@ -109,7 +108,6 @@ func TestAttrToSentryEvent(t *testing.T) {
IPAddress: "user_ip_address",
Username: "user_username",
Name: "user_name",
Segment: "user_segment",
Data: map[string]string{},
},
},
Expand Down

0 comments on commit a765a18

Please sign in to comment.