Skip to content

Commit

Permalink
fix in exclusion list
Browse files Browse the repository at this point in the history
  • Loading branch information
tbenr committed Oct 5, 2021
1 parent cae7d3c commit 58fef1c
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@

import static org.assertj.core.api.Assertions.assertThat;

import com.google.common.collect.ImmutableList;
import com.google.common.collect.ImmutableMap;
import java.util.Arrays;
import java.util.List;
import java.util.Map;
import org.apache.logging.log4j.LogManager;
Expand Down Expand Up @@ -56,10 +56,10 @@ public class ForkChoiceTestExecutor implements TestExecutor {
"new_justified_is_later_than_store_justified"))
.build();

private ImmutableList<?> testsToSkip;
private List<?> testsToSkip;

public ForkChoiceTestExecutor(String... testsToSkip) {
this.testsToSkip = ImmutableList.of(testsToSkip);
this.testsToSkip = Arrays.asList(testsToSkip);
}

@Override
Expand Down

0 comments on commit 58fef1c

Please sign in to comment.