Skip to content

Commit

Permalink
fix: broken tests
Browse files Browse the repository at this point in the history
  • Loading branch information
cbermudez97 committed Jul 25, 2023
1 parent b19bb04 commit eb34333
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions internal/pkg/clients/clients_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ func TestSupportedClients(t *testing.T) {
want []string
isErr bool
}{
{"execution", "gnosis", []string{"nethermind"}, false},
{"execution", "gnosis", []string{"nethermind", "erigon"}, false},
{"consensus", "gnosis", utils.Filter(AllClients["consensus"], func(c string) bool { return c != "prysm" }), false},
{"execution", "mainnet", AllClients["execution"], false},
{"consensus", "mainnet", AllClients["consensus"], false},
Expand Down Expand Up @@ -132,7 +132,7 @@ func TestClients(t *testing.T) {
map[string][]string{
"validator": {"lighthouse", "teku", "lodestar"},
"consensus": {"lighthouse", "teku", "lodestar"},
"execution": {"nethermind"},
"execution": {"nethermind", "erigon"},
},
[]string{"consensus", "execution", "validator"},
"gnosis",
Expand Down

0 comments on commit eb34333

Please sign in to comment.