Skip to content

Commit f3d0c29

Browse files
committed
fix test
1 parent 8d91818 commit f3d0c29

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

accounts/abi/bind/bind_test.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2043,7 +2043,7 @@ var bindTests = []struct {
20432043

20442044
// Tests that packages generated by the binder can be successfully compiled and
20452045
// the requested tester run against it.
2046-
func TestGolangBindings(t *testing.T) {
2046+
func TestBindings(t *testing.T) {
20472047
// Skip the test if no Go command can be found
20482048
gocmd := runtime.GOROOT() + "/bin/go"
20492049
if !common.FileExist(gocmd) {
@@ -2066,7 +2066,7 @@ func TestGolangBindings(t *testing.T) {
20662066
types = []string{tt.name}
20672067
}
20682068
// Generate the binding and create a Go source file in the workspace
2069-
bind, err := Bind(types, tt.abi, tt.bytecode, tt.fsigs, "bindtest", LangGo, tt.libs, tt.aliases)
2069+
bind, err := Bind(types, tt.abi, tt.bytecode, tt.fsigs, "bindtest", tt.libs, tt.aliases)
20702070
if err != nil {
20712071
t.Fatalf("test %d: failed to generate binding: %v", i, err)
20722072
}

0 commit comments

Comments
 (0)