Skip to content

Commit cbf13c9

Browse files
committed
style: fix lint
1 parent 4855871 commit cbf13c9

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

cmd/cyclonus/pkg/connectivity/testcasestate.go

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,14 @@
11
package connectivity
22

33
import (
4+
"time"
5+
46
"github.com/mattfenwick/cyclonus/pkg/connectivity/probe"
57
"github.com/mattfenwick/cyclonus/pkg/kube"
68
"github.com/pkg/errors"
79
"github.com/sirupsen/logrus"
810
v1 "k8s.io/api/core/v1"
911
networkingv1 "k8s.io/api/networking/v1"
10-
"time"
1112
)
1213

1314
type TestCaseState struct {
@@ -272,7 +273,8 @@ func NewLabelsDiff(actual map[string]string, expected map[string]string) *Labels
272273
ld.Same = append(ld.Same, k)
273274
}
274275
}
275-
for k, _ := range expected {
276+
277+
for k := range expected {
276278
if _, ok := actual[k]; !ok {
277279
ld.Missing = append(ld.Missing, k)
278280
}

0 commit comments

Comments
 (0)