Skip to content

Commit

Permalink
remove brittle test
Browse files Browse the repository at this point in the history
  • Loading branch information
cyberhorsey committed Feb 10, 2023
1 parent 27a0456 commit 86f5ba1
Showing 1 changed file with 0 additions and 24 deletions.
24 changes: 0 additions & 24 deletions packages/relayer/cli/cli_test.go
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
package cli

import (
"errors"
"os"
"strings"
"testing"
Expand Down Expand Up @@ -94,29 +93,6 @@ func Test_makeIndexers(t *testing.T) {
wantIndexers int
wantErr error
}{
{
"missingL1RPCUrl",
relayer.Both,
dbFunc,
func() func() {
return nil
},
0,
errors.New("dial unix valid: connect: no such file or directory"),
},
{
"missingL2RPCUrl",
relayer.Both,
dbFunc,
func() func() {
os.Setenv("L1_RPC_URL", "https://l1rpc.a1.taiko.xyz")
return func() {
os.Setenv("L1_RPC_URL", "")
}
},
0,
errors.New("dial unix valid: connect: no such file or directory"),
},
{
"successL1",
relayer.L1,
Expand Down

0 comments on commit 86f5ba1

Please sign in to comment.