Skip to content

Commit

Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
test: fix ssz types in fork_choice spec tests (#6767)
Browse files Browse the repository at this point in the history
nflaig authored and g11tech committed Jun 25, 2024

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
1 parent 03a043e commit 12b756a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/beacon-node/test/spec/presets/fork_choice.test.ts
Original file line number Diff line number Diff line change
@@ -343,8 +343,8 @@ const forkChoiceTest =
[BLOCK_FILE_NAME]: ssz[fork].SignedBeaconBlock,
[BLOBS_FILE_NAME]: ssz.deneb.Blobs,
[POW_BLOCK_FILE_NAME]: ssz.bellatrix.PowBlock,
[ATTESTATION_FILE_NAME]: ssz.phase0.Attestation,
[ATTESTER_SLASHING_FILE_NAME]: ssz.phase0.AttesterSlashing,
[ATTESTATION_FILE_NAME]: ssz.allForks[fork].Attestation,
[ATTESTER_SLASHING_FILE_NAME]: ssz.allForks[fork].AttesterSlashing,
},
mapToTestCase: (t: Record<string, any>) => {
// t has input file name as key

0 comments on commit 12b756a

Please sign in to comment.