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 83b5a72 commit a40fba8Copy full SHA for a40fba8
.golangci.yml
@@ -198,8 +198,3 @@ issues:
198
# goroutine
199
- path: handler.go
200
text: "Error return value of `handler` is not checked"
201
- # TODO(zchee): investigate why fail
202
- - path: wire_test.go
203
- text: "TestIDEncode's subtests should call t.Parallel"
204
- linters:
205
- - tparallel
wire_test.go
@@ -65,6 +65,8 @@ func TestIDEncode(t *testing.T) {
65
for _, tt := range wireIDTestData {
66
tt := tt
67
t.Run(tt.name, func(t *testing.T) {
68
+ t.Parallel()
69
+
70
data, err := json.MarshalNoEscape(&tt.id)
71
if err != nil {
72
t.Fatal(err)
0 commit comments