fix linter

pull/3357/head
Muhammed Efe Cetin 2025-03-19 12:37:04 +03:00
parent d06d0ca794
commit 97d6a56f37
No known key found for this signature in database
GPG Key ID: 0AA4D45CBAA86F73
2 changed files with 3 additions and 3 deletions

View File

@ -298,9 +298,8 @@ func (r *Request) Cookie(key string) string {
// Use maps.Collect() to gather them into a map if needed.
func (r *Request) Cookies() iter.Seq2[string, string] {
return func(yield func(string, string) bool) {
var res bool
for k, v := range *r.cookies {
res = yield(k, v)
res := yield(k, v)
if !res {
return
}

View File

@ -1,3 +1,4 @@
//nolint:goconst // Much easier to just ignore memory leaks in tests
package client
import (
@ -1595,7 +1596,7 @@ func Test_SetValWithStruct(t *testing.T) {
require.True(t, func() bool {
for _, v := range p.PeekMulti("TSlice") {
if string(v) == "bar" { //nolint:goconst // test
if string(v) == "bar" {
return true
}
}