Skip to content

Commit

Permalink
fix tests
Browse files Browse the repository at this point in the history
  • Loading branch information
pk910 committed Jul 1, 2024
1 parent 490a9b4 commit 6c6db7a
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions spec/electra/consensusspec_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -94,6 +94,10 @@ func TestConsensusSpec(t *testing.T) {
name: "Consolidation",
s: &electra.Consolidation{},
},
{
name: "ConsolidationRequest",
s: &electra.ConsolidationRequest{},
},
{
name: "ContributionAndProof",
s: &altair.ContributionAndProof{},
Expand All @@ -118,10 +122,6 @@ func TestConsensusSpec(t *testing.T) {
name: "Eth1Data",
s: &phase0.ETH1Data{},
},
{
name: "WithdrawalRequest",
s: &electra.WithdrawalRequest{},
},
{
name: "ExecutionPayload",
s: &electra.ExecutionPayload{},
Expand Down Expand Up @@ -182,10 +182,6 @@ func TestConsensusSpec(t *testing.T) {
name: "SignedBLSToExecutionChange",
s: &capella.SignedBLSToExecutionChange{},
},
{
name: "SignedConsolidation",
s: &electra.SignedConsolidation{},
},
{
name: "SignedContributionAndProof",
s: &altair.SignedContributionAndProof{},
Expand Down Expand Up @@ -222,6 +218,10 @@ func TestConsensusSpec(t *testing.T) {
name: "Withdrawal",
s: &capella.Withdrawal{},
},
{
name: "WithdrawalRequest",
s: &electra.WithdrawalRequest{},
},
}

baseDir := filepath.Join(os.Getenv("CONSENSUS_SPEC_TESTS_DIR"), "tests", "mainnet", "electra", "ssz_static")
Expand Down

0 comments on commit 6c6db7a

Please sign in to comment.