Skip to content

Commit

Permalink
Fix linting
Browse files Browse the repository at this point in the history
  • Loading branch information
tisutisu committed Mar 11, 2024
1 parent 00168de commit ab168ef
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/build/multi-platform.go
Original file line number Diff line number Diff line change
Expand Up @@ -276,7 +276,7 @@ var _ = framework.MultiPlatformBuildSuiteDescribe("Multi Platform Controller E2E
// Restart multi-platform-controller pod to reload configMap again
podList, err := f.AsKubeAdmin.CommonController.ListAllPods(ControllerNamespace)
Expect(err).ShouldNot(HaveOccurred())
for i, _ := range podList.Items {
for i := range podList.Items {
podName := podList.Items[i].Name
if strings.HasPrefix(podName, ControllerNamespace) {
err := f.AsKubeAdmin.CommonController.RestartPod(podName, ControllerNamespace)
Expand Down

0 comments on commit ab168ef

Please sign in to comment.