Skip to content

Commit 6702b74

Browse files
fix review
Signed-off-by: Artur Melanchyk <[email protected]>
1 parent f717fec commit 6702b74

File tree

1 file changed

+0
-8
lines changed

1 file changed

+0
-8
lines changed

client/core_test.go

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -355,39 +355,31 @@ func (b *blockingErrTransport) Do(_ *fasthttp.Request, _ *fasthttp.Response) err
355355
}
356356

357357
func (b *blockingErrTransport) DoTimeout(req *fasthttp.Request, resp *fasthttp.Response, timeout time.Duration) error {
358-
_ = timeout
359358
return b.Do(req, resp)
360359
}
361360

362361
func (b *blockingErrTransport) DoDeadline(req *fasthttp.Request, resp *fasthttp.Response, deadline time.Time) error {
363-
_ = deadline
364362
return b.Do(req, resp)
365363
}
366364

367365
func (b *blockingErrTransport) DoRedirects(req *fasthttp.Request, resp *fasthttp.Response, maxRedirects int) error {
368-
_ = maxRedirects
369366
return b.Do(req, resp)
370367
}
371368

372369
func (b *blockingErrTransport) CloseIdleConnections() {
373-
_ = b
374370
}
375371

376372
func (b *blockingErrTransport) TLSConfig() *tls.Config {
377-
_ = b
378373
return nil
379374
}
380375

381376
func (b *blockingErrTransport) SetTLSConfig(_ *tls.Config) {
382-
_ = b
383377
}
384378

385379
func (b *blockingErrTransport) SetDial(_ fasthttp.DialFunc) {
386-
_ = b
387380
}
388381

389382
func (b *blockingErrTransport) Client() any {
390-
_ = b
391383
return nil
392384
}
393385

0 commit comments

Comments
 (0)