Remove the trailing comma

This commit is contained in:
Hsiao-Wei Wang 2021-10-07 21:43:23 +08:00
parent f8d178a4a6
commit e821ddade2
No known key found for this signature in database
GPG Key ID: 1111A8A81778319E
2 changed files with 2 additions and 2 deletions

View File

@ -20,7 +20,7 @@ if __name__ == "__main__":
'inactivity_updates',
'participation_flag_updates',
'sync_committee_updates',
]},
]}
altair_mods = combine_mods(_new_altair_mods, phase_0_mods)
# No epoch-processing changes in Merge and previous testing repeats with new types, so no additional tests required.

View File

@ -14,7 +14,7 @@ if __name__ == "__main__":
# PowBlock's which should be resolved by `get_pow_block(hash: Hash32) -> PowBlock` function
_new_merge_mods = {key: 'eth2spec.test.merge.fork_choice.test_' + key for key in [
'on_merge_block',
]},
]}
merge_mods = combine_mods(_new_merge_mods, altair_mods)
all_mods = {