Skip to content

Commit

Permalink
eth/catalyst: fix test
Browse files Browse the repository at this point in the history
  • Loading branch information
MariusVanDerWijden authored and karalabe committed Jul 28, 2022
1 parent 4afed22 commit c698c64
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions eth/catalyst/api_test.go
Expand Up @@ -662,8 +662,8 @@ func TestEmptyBlocks(t *testing.T) {
if err != nil {
t.Fatal(err)
}
if status.Status != beacon.ACCEPTED {
t.Errorf("invalid status: expected ACCEPTED got: %v", status.Status)
if status.Status != beacon.SYNCING {
t.Errorf("invalid status: expected SYNCING got: %v", status.Status)
}
if status.LatestValidHash != nil {
t.Fatalf("invalid LVH: got %v wanted nil", status.LatestValidHash)
Expand Down

0 comments on commit c698c64

Please sign in to comment.