Skip to content

Commit 1aa2070

Browse files
committed
fix lint
1 parent 32acaef commit 1aa2070

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

internal/planner/planner_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -711,7 +711,7 @@ func TestGetScaleDeployments(t *testing.T) {
711711
assert.True(t, ok, "did not expect to find Deployment %s in ScaleDeployments, but found it", deploymentRef.Name)
712712
assert.Equal(t, expectedReplicas, actualReplicas, "unexpected scale replicas")
713713
}
714-
for expectedName, _ := range tc.expectScales {
714+
for expectedName := range tc.expectScales {
715715
if !slices.Contains(actualScaleDeploymentNames, expectedName) {
716716
t.Errorf("expected to find Deployment %s in ScaleDeployments, but did not find it", expectedName)
717717
}

0 commit comments

Comments
 (0)