Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit b5e6460

Browse files
committed
linting
1 parent 90683be commit b5e6460

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

coderd/pagination_internal_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ import (
1616
func TestPagination(t *testing.T) {
1717
t.Parallel()
1818
const invalidValues = "Query parameters have invalid values"
19-
emptyReq, _ := http.NewRequest(http.MethodGet, "/", nil)
19+
emptyReq, _ := http.NewRequestWithContext(context.Background(), http.MethodGet, "/", nil)
2020
defaults, ok := parsePagination(httptest.NewRecorder(), emptyReq)
2121
require.True(t, ok)
2222

0 commit comments

Comments
 (0)