diff --git a/docs/getting_started/repository_overview.md b/docs/getting_started/repository_overview.md index 669a464707..b4461c4e87 100644 --- a/docs/getting_started/repository_overview.md +++ b/docs/getting_started/repository_overview.md @@ -15,8 +15,7 @@ The most relevant folders and files in the repo are: │ ├── 📁 state_tests/ │ └── 📁 ... ├─╴📁 src/ # library & framework packages -│ ├── 📁 ethereum_test_fork/ -│ ├── 📁 ethereum_test_tools/ +│ ├── 📁 execution_testing/ │ └── 📁 ... ├─╴📁 docs/ # markdown documentation │ ├── 📁 getting_started diff --git a/docs/writing_tests/checklist_templates/eip_testing_checklist_template.md b/docs/writing_tests/checklist_templates/eip_testing_checklist_template.md index f6ecf8d8d9..09eb549e02 100644 --- a/docs/writing_tests/checklist_templates/eip_testing_checklist_template.md +++ b/docs/writing_tests/checklist_templates/eip_testing_checklist_template.md @@ -1039,10 +1039,10 @@ Verify, given multiple initial values, that a block is accepted or rejected depe ### Framework Changes - Add the new header field to the relevant objects: - - `ethereum_test_fixtures.FixtureHeader`. - - `ethereum_test_fixtures.FixtureExecutionPayload`. - - `ethereum_test_specs.Header`. -- Add the appropriate `header_*_required` fork method to `BaseFork` in `ethereum_test_forks`. + - `execution_testing.fixtures.FixtureHeader`. + - `execution_testing.fixtures.FixtureExecutionPayload`. + - `execution_testing.specs.Header`. +- Add the appropriate `header_*_required` fork method to `BaseFork` in `execution_testing.forks`. ## New Block Body Field @@ -1067,10 +1067,10 @@ Verify, given multiple initial values, that a block is accepted or rejected depe ### Framework Changes - Add the new body field to the relevant objects. - - `ethereum_test_fixtures.FixtureBlockBase`. - - `ethereum_test_fixtures.FixtureEngineNewPayload`. - - `ethereum_test_specs.Block`. -- Modify `ethereum_test_specs.BlockchainTest` filling behavior to account for the new block field. + - `execution_testing.fixtures.FixtureBlockBase`. + - `execution_testing.fixtures.FixtureEngineNewPayload`. + - `execution_testing.specs.Block`. +- Modify `execution_testing.specs.BlockchainTest` filling behavior to account for the new block field. ## Gas Cost Changes