From 66d0875b19dfc311c70113698b6ff68f418eb5ce Mon Sep 17 00:00:00 2001 From: aryanpatil2703 Date: Sat, 15 Nov 2025 02:49:12 +0530 Subject: [PATCH] docs: update package names from ethereum_test_* to execution_testing.* Update documentation to reflect package renaming from ethereum_test_* to execution_testing.* namespace (follow-up to PR #1654). Changes: - Update module references in eip_testing_checklist_template.md - Update directory structure in repository_overview.md All module references now use the unified execution_testing.* namespace. --- docs/getting_started/repository_overview.md | 3 +-- .../eip_testing_checklist_template.md | 16 ++++++++-------- 2 files changed, 9 insertions(+), 10 deletions(-) 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