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 b78d201 commit 8c3bde5Copy full SHA for 8c3bde5
internal/utils/utils_test.go
@@ -23,7 +23,9 @@ func TestTruncateString(t *testing.T) {
23
}
24
25
for _, tt := range tests {
26
+ tt := tt
27
t.Run(tt.name, func(t *testing.T) {
28
+ t.Parallel()
29
result := TruncateString(tt.input, tt.length)
30
assert.Equal(t, tt.expected, result)
31
})
@@ -59,7 +61,9 @@ func TestUpsertEnvironmentStatus(t *testing.T) {
59
61
60
62
63
64
65
66
67
result := UpsertEnvironmentStatus(tt.initial, tt.insert)
68
69
0 commit comments