Skip to content

Commit

Permalink
fix IGNORE_TESTS predicate
Browse files Browse the repository at this point in the history
  • Loading branch information
StefanBratanov committed Sep 21, 2023
1 parent 84d6c26 commit 42c1ff2
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ public class ReferenceTestFinder {
// should only be used to temporarily disable specific reference tests,
// otherwise should return false
private static final Predicate<TestDefinition> IGNORE_TESTS =
test -> test.getFork().equals(TestFork.DENEB) && test.getTestType().startsWith("fork-choice");
test -> test.getFork().equals(TestFork.DENEB) && test.getTestType().startsWith("fork_choice");

@MustBeClosed
public static Stream<TestDefinition> findReferenceTests() throws IOException {
Expand Down

0 comments on commit 42c1ff2

Please sign in to comment.