Skip to content

Commit a439381

Browse files
authored
remove flaky flag from golangbindings test (#951)
1 parent c42d85b commit a439381

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

accounts/abi/bind/bind_test.go

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2063,7 +2063,6 @@ func TestGolangBindingsOverload(t *testing.T) {
20632063
}
20642064

20652065
func TestGolangBindings(t *testing.T) {
2066-
t.Skip("FLAKY")
20672066
golangBindings(t, false)
20682067
}
20692068

accounts/abi/bind/precompilebind/precompile_bind_test.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -514,7 +514,7 @@ func TestPrecompileBind(t *testing.T) {
514514
// Create a temporary workspace for the test suite
515515
ws := t.TempDir()
516516

517-
pkg := filepath.Join(ws, "bindtest")
517+
pkg := filepath.Join(ws, "precompilebindtest")
518518
if err := os.MkdirAll(pkg, 0o700); err != nil {
519519
t.Fatalf("failed to create package: %v", err)
520520
}
@@ -581,7 +581,7 @@ func TestPrecompileBind(t *testing.T) {
581581
})
582582
}
583583

584-
moder := exec.Command(gocmd, "mod", "init", "bindtest")
584+
moder := exec.Command(gocmd, "mod", "init", "precompilebindtest")
585585
moder.Dir = pkg
586586
if out, err := moder.CombinedOutput(); err != nil {
587587
t.Fatalf("failed to convert binding test to modules: %v\n%s", err, out)

0 commit comments

Comments
 (0)