Skip to content

Commit

Permalink
fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
leohhhn committed Jan 16, 2025
1 parent 07a8ca4 commit a0da376
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions examples/gno.land/r/demo/foo721/foo721_test.gno
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,6 @@ import (
"testing"

"gno.land/p/demo/grc/grc721"

"gno.land/r/sys/users"
)

func TestFoo721(t *testing.T) {
Expand All @@ -20,7 +18,7 @@ func TestFoo721(t *testing.T) {
}{
{"BalanceOf(admin)", uint64(10), func() interface{} { return BalanceOf(admin) }},
{"BalanceOf(hariom)", uint64(5), func() interface{} { return BalanceOf(hariom) }},
{"OwnerOf(0)", users.Resolve(admin), func() interface{} { return OwnerOf(grc721.TokenID("0")) }},
{"OwnerOf(0)", admin, func() interface{} { return OwnerOf(grc721.TokenID("0")) }},
{"IsApprovedForAll(admin, hariom)", false, func() interface{} { return IsApprovedForAll(admin, hariom) }},
} {
t.Run(tc.name, func(t *testing.T) {
Expand Down

0 comments on commit a0da376

Please sign in to comment.