Merge pull request #2656 from ethereum/remove-comma

Remove the trailing commas in test generators
This commit is contained in:
Danny Ryan 2021-10-07 17:00:28 +03:00 committed by GitHub
commit fef5755d00
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View File

@ -20,7 +20,7 @@ if __name__ == "__main__":
'inactivity_updates', 'inactivity_updates',
'participation_flag_updates', 'participation_flag_updates',
'sync_committee_updates', 'sync_committee_updates',
]}, ]}
altair_mods = combine_mods(_new_altair_mods, phase_0_mods) 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. # 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 # 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 [ _new_merge_mods = {key: 'eth2spec.test.merge.fork_choice.test_' + key for key in [
'on_merge_block', 'on_merge_block',
]}, ]}
merge_mods = combine_mods(_new_merge_mods, altair_mods) merge_mods = combine_mods(_new_merge_mods, altair_mods)
all_mods = { all_mods = {