Skip to content

Commit

Permalink
nits: add t.Parallel()
Browse files Browse the repository at this point in the history
Signed-off-by: t-kikuc <tkikuchi07f@gmail.com>
  • Loading branch information
t-kikuc committed Sep 2, 2024
1 parent e2a7dd9 commit f6c8a63
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions pkg/app/server/httpapi/callback_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@ import (
)

func TestParseProjectAndState(t *testing.T) {
t.Parallel()
tests := []struct {
name string
formValues url.Values
Expand Down Expand Up @@ -79,6 +80,7 @@ func TestParseProjectAndState(t *testing.T) {

for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
t.Parallel()
req := httptest.NewRequest(http.MethodGet, "/", nil)
req.Form = tt.formValues

Expand Down

0 comments on commit f6c8a63

Please sign in to comment.