Closed agostbiro closed 1 month ago
Latest commit: be4cd10c12dbf488641e2b386b124d38f5ebfe7d
Merging this PR will not cause a version bump for any packages. If these changes should not result in a new version, you're good to go. If these changes should result in a version bump, you need to add a changeset.
Click here to learn what changesets are, and how to add one.
Click here if you're a maintainer who wants to add a changeset to this PR
Make sure we return an empty test suite result for empty test suites.
The fix changes the semantics of the
TestFilter
slightly, hence the need for the change tocrates/edr_solidity_tests/tests/it/fork.rs
, but since theTestFilter
isn't exposed (it's only used in integration tests), I think this is ok.The change in semantics is that previously we only returned results for a test suite if the test name filter also matched at least one test name in the test suite. Now we return an empty result instead if the path filter and suite name filter match, but the test name filter doesn't match.
Fixes https://github.com/NomicFoundation/edr/issues/702