8000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6c41620 commit 6b7dec3Copy full SHA for 6b7dec3
codersdk/pagination_test.go
@@ -1,3 +1,4 @@
1
+//nolint:testpackage
2
package codersdk
3
4
import (
@@ -11,6 +12,8 @@ import (
11
12
)
13
14
func TestPagination_asRequestOption(t *testing.T) {
15
+ t.Parallel()
16
+
17
uuid1 := uuid.New()
18
type fields struct {
19
AfterID uuid.UUID
@@ -39,7 +42,10 @@ func TestPagination_asRequestOption(t *testing.T) {
39
42
},
40
43
}
41
44
for _, tt := range tests {
45
+ tt := tt
46
t.Run(tt.name, func(t *testing.T) {
47
48
49
p := Pagination{
50
AfterID: tt.fields.AfterID,
51
Limit: tt.fields.Limit,
0 commit comments