fix: Fix style issue in test
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful

This commit is contained in:
PapaTutuWawa 2024-02-03 16:45:13 +01:00
parent b9cc7f30e8
commit 3747f02ed8

View File

@ -12,7 +12,7 @@ func equals(a, b []string) bool {
return false
}
for i, _ := range a {
for i := range a {
if a[i] != b[i] {
return false
}