Skip to content

Commit

Permalink
fix gobindings test
Browse files Browse the repository at this point in the history
  • Loading branch information
patrick-ogrady committed Apr 13, 2022
1 parent d759726 commit b3ee15d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion accounts/abi/bind/bind_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -2064,7 +2064,7 @@ func golangBindings(t *testing.T, overload bool) {
if out, err := replacer.CombinedOutput(); err != nil {
t.Fatalf("failed to replace binding test dependency to current source tree: %v\n%s", err, out)
}
tidier := exec.Command(gocmd, "mod", "tidy")
tidier := exec.Command(gocmd, "mod", "tidy", "-compat=1.17")
tidier.Dir = pkg
if out, err := tidier.CombinedOutput(); err != nil {
t.Fatalf("failed to tidy Go module file: %v\n%s", err, out)
Expand Down

0 comments on commit b3ee15d

Please sign in to comment.