Skip to content

Commit c698c64

Browse files
MariusVanDerWijdenkaralabe
authored andcommitted
eth/catalyst: fix test
1 parent 4afed22 commit c698c64

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

eth/catalyst/api_test.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -662,8 +662,8 @@ func TestEmptyBlocks(t *testing.T) {
662662
if err != nil {
663663
t.Fatal(err)
664664
}
665-
if status.Status != beacon.ACCEPTED {
666-
t.Errorf("invalid status: expected ACCEPTED got: %v", status.Status)
665+
if status.Status != beacon.SYNCING {
666+
t.Errorf("invalid status: expected SYNCING got: %v", status.Status)
667667
}
668668
if status.LatestValidHash != nil {
669669
t.Fatalf("invalid LVH: got %v wanted nil", status.LatestValidHash)

0 commit comments

Comments
 (0)