From c698c64702a26893988fe55d7000462a2abec93f Mon Sep 17 00:00:00 2001 From: Marius van der Wijden Date: Wed, 27 Jul 2022 09:24:44 +0200 Subject: [PATCH] eth/catalyst: fix test --- eth/catalyst/api_test.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/eth/catalyst/api_test.go b/eth/catalyst/api_test.go index 0372aad6b79df..df302f8211c72 100644 --- a/eth/catalyst/api_test.go +++ b/eth/catalyst/api_test.go @@ -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)