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 92be1d6 commit 881cd6aCopy full SHA for 881cd6a
coderd/agentmetrics/labels_test.go
@@ -3,11 +3,14 @@ package agentmetrics_test
3
import (
4
"testing"
5
6
- "github.com/coder/coder/v2/coderd/agentmetrics"
7
"github.com/stretchr/testify/require"
+
8
+ "github.com/coder/coder/v2/coderd/agentmetrics"
9
)
10
11
func TestValidateAggregationLabels(t *testing.T) {
12
+ t.Parallel()
13
14
tests := []struct {
15
name string
16
labels []string
@@ -36,6 +39,8 @@ func TestValidateAggregationLabels(t *testing.T) {
36
39
}
37
40
38
41
for _, tc := range tests {
42
+ tc := tc
43
44
t.Run(tc.name, func(t *testing.T) {
45
t.Parallel()
46
0 commit comments