Skip to content
Snippets Groups Projects
Commit 86f96ce0 authored by ko_oler's avatar ko_oler
Browse files

linter fix

parent a192c846
No related branches found
No related tags found
No related merge requests found
......@@ -136,7 +136,7 @@ func TestCallerIDFromContext(t *testing.T) {
want zap.Field
}{
{name: "ok", field: CallerFromContext(ctx), want: zap.Reflect("caller", oid)},
{name: "invalid", field: CallerFromContext(nil), want: zap.Skip()},
{name: "invalid", field: CallerFromContext(context.TODO()), want: zap.Skip()},
}
for _, tc := range tests {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment