Skip to content

Commit

Permalink
lint(keystone/changeset): fixes loop var lint
Browse files Browse the repository at this point in the history
  • Loading branch information
MStreet3 committed Dec 23, 2024
1 parent 56c1438 commit 0b428a8
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions deployment/keystone/changeset/deploy_ocr3_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ func TestConfigureOCR3(t *testing.T) {
})

var wfNodes []string
for id, _ := range te.WFNodes {
for id := range te.WFNodes {
wfNodes = append(wfNodes, id)
}

Expand Down Expand Up @@ -130,7 +130,7 @@ func TestConfigureOCR3(t *testing.T) {
}

var wfNodes []string
for id, _ := range te.WFNodes {
for id := range te.WFNodes {
wfNodes = append(wfNodes, id)
}

Expand Down Expand Up @@ -180,7 +180,7 @@ func TestConfigureOCR3(t *testing.T) {
require.Len(t, addrs, 5)

var wfNodes []string
for id, _ := range te.WFNodes {
for id := range te.WFNodes {
wfNodes = append(wfNodes, id)
}

Expand Down Expand Up @@ -223,7 +223,7 @@ func TestConfigureOCR3(t *testing.T) {
require.Len(t, addrs, 5)

var wfNodes []string
for id, _ := range te.WFNodes {
for id := range te.WFNodes {
wfNodes = append(wfNodes, id)
}

Expand Down Expand Up @@ -252,7 +252,7 @@ func TestConfigureOCR3(t *testing.T) {
})

var wfNodes []string
for id, _ := range te.WFNodes {
for id := range te.WFNodes {
wfNodes = append(wfNodes, id)
}

Expand Down

0 comments on commit 0b428a8

Please sign in to comment.