mirror of
https://github.com/navidrome/navidrome.git
synced 2025-04-03 04:27:37 +03:00
Fixing static checks about passing nil context
This commit is contained in:
parent
95790b9eff
commit
03c3c192ed
17 changed files with 42 additions and 29 deletions
|
@ -70,7 +70,7 @@ var _ = Describe("Logger", func() {
|
|||
})
|
||||
|
||||
It("can get data from the request's context", func() {
|
||||
ctx := NewContext(nil, "foo", "bar")
|
||||
ctx := NewContext(context.TODO(), "foo", "bar")
|
||||
req := httptest.NewRequest("get", "/", nil).WithContext(ctx)
|
||||
|
||||
Error(req, "Simple Message", "key1", "value1")
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue