Skip to content

Commit

Permalink
Fix test cases source path
Browse files Browse the repository at this point in the history
  • Loading branch information
hwwhww committed Nov 28, 2024
1 parent efb554f commit 29d9e8d
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion tests/generators/sanity/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,10 +31,13 @@
# This is a "hack" which allows other test files (e.g., test_deposit_transition.py)
# to reuse the sanity/block test format. If a new test file is added or removed,
# do not forget to update sanity/block/__init__.py accordingly.
_new_electra_mods = {key: 'eth2spec.test.electra.sanity.' + key for key in [
_new_electra_mods_1 = {key: 'eth2spec.test.electra.sanity.' + key for key in [
'blocks',
]}
_new_electra_mods_2 = {key: 'eth2spec.test.electra.sanity.test_' + key for key in [
'slots',
]}
_new_electra_mods = {**_new_electra_mods_1, **_new_electra_mods_2}
electra_mods = combine_mods(_new_electra_mods, deneb_mods)

all_mods = {
Expand Down

0 comments on commit 29d9e8d

Please sign in to comment.