Skip to content

Commit

Permalink
eth/catalyst: fix test
Browse files Browse the repository at this point in the history
  • Loading branch information
MariusVanDerWijden committed Jul 27, 2022
1 parent 9047fb6 commit 40c0581
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 40c0581

Please sign in to comment.