Skip to content

Commit

Permalink
test: fix ssz types in fork_choice spec tests (#6767)
Browse files Browse the repository at this point in the history
  • Loading branch information
nflaig authored and g11tech committed Aug 9, 2024
1 parent 8de6fb4 commit 9f8a19f
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
Expand Up @@ -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
Expand Down

0 comments on commit 9f8a19f

Please sign in to comment.