Skip to content

Commit

Permalink
fixup
Browse files Browse the repository at this point in the history
  • Loading branch information
thehowl committed May 9, 2024
1 parent 9ee3cc6 commit f843acb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion gnovm/pkg/gnolang/gonative_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ import (
// and the odd index items are corresponding package values.
func gonativeTestStore(args ...interface{}) Store {
store := NewStore(nil, nil, nil)
store.SetPackageGetter(func(pkgPath string, _ Store) (*PackageNode, *PackageValue) {
store.SetPackageGetter(func(pkgPath string) (*PackageNode, *PackageValue) {
for i := 0; i < len(args)/2; i++ {
pn := args[i*2].(*PackageNode)
pv := args[i*2+1].(*PackageValue)
Expand Down

0 comments on commit f843acb

Please sign in to comment.