Skip to content

Commit

Permalink
test: remove loop closure
Browse files Browse the repository at this point in the history
  • Loading branch information
harshal-rembhotkar committed Feb 21, 2025
1 parent 01b3e02 commit daefb49
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions go/cmd/zk/internal/zkfs/zkfs_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -73,11 +73,11 @@ func TestFormatACL(t *testing.T) {
expected: "r-d-a",
},
}

for _, tc := range testCases {
tc := tc
t.Run(tc.name, func(t *testing.T) {
assert.Equal(t, tc.expected, FormatACL(tc.acl))
})

}
}

0 comments on commit daefb49

Please sign in to comment.