Skip to content

Commit

Permalink
Add back nolint comment
Browse files Browse the repository at this point in the history
  • Loading branch information
jtraglia committed Sep 25, 2024
1 parent dc8c351 commit e5500c0
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions server/service_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -187,9 +187,8 @@ func TestWebserverMaxHeaderSize(t *testing.T) {
addr := "localhost:1234"
backend.boost.listenAddr = addr
go func() {
t.Helper()
err := backend.boost.StartHTTPServer()
require.NoError(t, err)
require.NoError(t, err) //nolint:testifylint
}()
time.Sleep(time.Millisecond * 100)
path := "http://" + addr + "?" + strings.Repeat("abc", 4000) // path with characters of size over 4kb
Expand Down

0 comments on commit e5500c0

Please sign in to comment.