Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions accounts/abi/pack_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@
func TestPack(t *testing.T) {
t.Parallel()
for i, test := range packUnpackTests {
i, test := i, test

Check failure on line 37 in accounts/abi/pack_test.go

View workflow job for this annotation

GitHub Actions / Lint

The copy of the 'for' variable "i" can be deleted (Go 1.22+) (copyloopvar)
t.Run(strconv.Itoa(i), func(t *testing.T) {
t.Parallel()
encb, err := hex.DecodeString(test.packed)
Expand Down
Loading