Skip to content

Commit 2d15256

Browse files
authored
Merge pull request #71 from spencer-tb/main
Fix: Small bug with test filler merge.
2 parents 6636828 + 2e9dcd8 commit 2d15256

File tree

3 files changed

+2
-3
lines changed

3 files changed

+2
-3
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@ The following are required to either generate or develop tests:
2121

2222
3. [`solc`](https://github.com/ethereum/solidity) >= `v0.8.17`; `solc` must be in accessible in the `PATH`.
2323

24+
2425
### Installation
2526

2627
To generate tests from the test "fillers", it's necessary to install the Python packages provided by `execution-spec-tests` (it's recommended to use a virtual environment for the installation):
@@ -41,7 +42,6 @@ tf --test-case yul
4142
head fixtures/example/example/yul.json
4243
```
4344

44-
4545
### Generating the Execution Spec Tests For Use With Clients
4646

4747
To generate all the tests defined in the `./fillers` sub-directory, run the `tf` command:

docs/getting_started/01_quick_start.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,6 @@ tf --test-case yul
3636
head fixtures/example/example/yul.json
3737
```
3838

39-
4039
## Generating the Execution Spec Tests For Use With Clients
4140

4241
To generate all the tests defined in the `./fillers` sub-directory, run the `tf` command:

src/ethereum_test_filling_tool/main.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -139,7 +139,7 @@ def fill(self) -> None:
139139
output_dir = os.path.join(
140140
self.options.output,
141141
*(filler.__filler_metadata__["module_path"])
142-
if self.options.no_output_structure is None
142+
if not self.options.no_output_structure
143143
else "",
144144
)
145145
os.makedirs(output_dir, exist_ok=True)

0 commit comments

Comments
 (0)