Skip to content

Commit

Permalink
Fixed logrus hook tests
Browse files Browse the repository at this point in the history
  • Loading branch information
tomerf committed Feb 27, 2024
1 parent 6378235 commit da20086
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions hook_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -60,9 +60,9 @@ func TestHook_Send(t *testing.T) {
},
{
name: "test info",
severity: Level.ERROR,
severity: Level.INFO,
logfn: func(args ...interface{}) {
log.WithFields(fields).Error(args...)
log.WithFields(fields).Info(args...)
},
},
{
Expand Down Expand Up @@ -98,7 +98,7 @@ func TestHook_Send(t *testing.T) {
})
}

// test with caller\
// test with caller
log.SetReportCaller(true)
for _, tc := range testcases {
tc.name = fmt.Sprintf("%s_withReportCaller", tc.name)
Expand All @@ -115,7 +115,7 @@ func TestHook_Send(t *testing.T) {
assert.Equal(t, tc.severity, entry.Severity)
assert.Equal(t, fields["Category"], entry.Category)
assert.Equal(t, fields["ThreadId"], entry.ThreadID,
"expected %v, got %v", fields["MyThreadId"], entry.ThreadID)
"expected %v, got %v", fields["ThreadId"], entry.ThreadID)
assert.True(t, strings.Contains(entry.Text, fields["extra"].(string)),
"entry Text does not contain extra field", entry.Text, fields["extra"])
break
Expand Down

0 comments on commit da20086

Please sign in to comment.