chore(code): use int ranges in loops BE-10990 (#12028)

This commit is contained in:
andres-portainer
2024-07-10 19:22:47 -03:00
committed by GitHub
parent 468c12c75b
commit 31bdb948a8
12 changed files with 183 additions and 169 deletions
+1 -1
View File
@@ -33,7 +33,7 @@ func TestService_StackByWebhookID(t *testing.T) {
b := stackBuilder{t: t, store: store}
b.createNewStack(newGuidString(t))
for i := 0; i < 10; i++ {
for range 10 {
b.createNewStack("")
}
webhookID := newGuidString(t)