mirror of
https://codeberg.org/Codeberg/pages-server.git
synced 2025-02-23 12:23:58 +00:00
Use http.NoBody as per linter (#231)
Reviewed-on: https://codeberg.org/Codeberg/pages-server/pulls/231 Reviewed-by: Gusted <gusted@noreply.codeberg.org>
This commit is contained in:
parent
5a6f415428
commit
5fe4613813
@ -1,6 +1,7 @@
|
|||||||
package handler
|
package handler
|
||||||
|
|
||||||
import (
|
import (
|
||||||
|
"net/http"
|
||||||
"net/http/httptest"
|
"net/http/httptest"
|
||||||
"testing"
|
"testing"
|
||||||
"time"
|
"time"
|
||||||
@ -24,7 +25,7 @@ func TestHandlerPerformance(t *testing.T) {
|
|||||||
|
|
||||||
testCase := func(uri string, status int) {
|
testCase := func(uri string, status int) {
|
||||||
t.Run(uri, func(t *testing.T) {
|
t.Run(uri, func(t *testing.T) {
|
||||||
req := httptest.NewRequest("GET", uri, nil)
|
req := httptest.NewRequest("GET", uri, http.NoBody)
|
||||||
w := httptest.NewRecorder()
|
w := httptest.NewRecorder()
|
||||||
|
|
||||||
log.Printf("Start: %v\n", time.Now())
|
log.Printf("Start: %v\n", time.Now())
|
||||||
|
Loading…
x
Reference in New Issue
Block a user