Skip to content

Commit c6f7571

Browse files
s1najwasinger
authored andcommitted
fix test
1 parent 60535d1 commit c6f7571

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

accounts/abi/bind/bind_test.go

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

20732073
// Tests that packages generated by the binder can be successfully compiled and
20742074
// the requested tester run against it.
2075-
func TestGolangBindings(t *testing.T) {
2076-
t.Parallel()
2075+
func TestBindings(t *testing.T) {
20772076
// Skip the test if no Go command can be found
20782077
gocmd := runtime.GOROOT() + "/bin/go"
20792078
if !common.FileExist(gocmd) {
@@ -2096,7 +2095,7 @@ func TestGolangBindings(t *testing.T) {
20962095
types = []string{tt.name}
20972096
}
20982097
// Generate the binding and create a Go source file in the workspace
2099-
bind, err := Bind(types, tt.abi, tt.bytecode, tt.fsigs, "bindtest", LangGo, tt.libs, tt.aliases)
2098+
bind, err := Bind(types, tt.abi, tt.bytecode, tt.fsigs, "bindtest", tt.libs, tt.aliases)
21002099
if err != nil {
21012100
t.Fatalf("test %d: failed to generate binding: %v", i, err)
21022101
}

0 commit comments

Comments
 (0)