Skip to content

Commit

Permalink
chore: bump ef-tests to 14.1 (#760)
Browse files Browse the repository at this point in the history
* chore: bump ef-tests to 14.1

* fix: replace ' ' with '_' in generated test names

* dev: bump to custom tests fork
  • Loading branch information
enitrat authored Sep 18, 2024
1 parent 9ec2b19 commit 30107ef
Show file tree
Hide file tree
Showing 6 changed files with 587 additions and 16,549 deletions.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ endif

# The release tag of https://github.com/kkrt-labs/tests to use for EF tests. Usually an
# ethereum/tests release tag followed by `-kkrt`.
EF_TESTS_TAG := v13.3-kkrt-1
EF_TESTS_TAG := v14.1-kkrt
EF_TESTS_URL := https://github.com/kkrt-labs/tests/archive/refs/tags/$(EF_TESTS_TAG).tar.gz
EF_TESTS_DIR := ./crates/ef-testing/ethereum-tests

Expand Down
2 changes: 2 additions & 0 deletions crates/build-utils/src/converter.rs
Original file line number Diff line number Diff line change
Expand Up @@ -222,6 +222,8 @@ impl<'a> EfTests<'a> {
.replace('[', "__")
.replace(']', "")
.replace('-', "_minus_")
.replace(" ", "_")
.replace(".", "_")
.split(',')
.map(|part| part.trim())
.collect::<Vec<_>>()
Expand Down

Large diffs are not rendered by default.

Loading

0 comments on commit 30107ef

Please sign in to comment.