File tree Expand file tree Collapse file tree 2 files changed +3
-4
lines changed
cucumber-core/src/main/java/io/cucumber/core/plugin Expand file tree Collapse file tree 2 files changed +3
-4
lines changed Original file line number Diff line number Diff line change 66import io .cucumber .plugin .ColorAware ;
77import io .cucumber .plugin .ConcurrentEventListener ;
88import io .cucumber .plugin .event .EventPublisher ;
9- import io .cucumber .plugin .event .SnippetsSuggestedEvent ;
109import io .cucumber .plugin .event .TestRunFinished ;
1110import io .cucumber .query .Query ;
1211import io .cucumber .query .Repository ;
2120import java .util .Set ;
2221import java .util .stream .Collectors ;
2322
24- import static io .cucumber .query .Repository .RepositoryFeature .INCLUDE_GHERKIN_DOCUMENT ;
23+ import static io .cucumber .query .Repository .RepositoryFeature .INCLUDE_GHERKIN_DOCUMENTS ;
2524import static io .cucumber .query .Repository .RepositoryFeature .INCLUDE_SUGGESTIONS ;
2625
2726public final class DefaultSummaryPrinter implements ColorAware , ConcurrentEventListener {
2827
2928 private final Repository repository = Repository .builder ()
30- .feature (INCLUDE_GHERKIN_DOCUMENT , true )
29+ .feature (INCLUDE_GHERKIN_DOCUMENTS , true )
3130 .feature (INCLUDE_SUGGESTIONS , true )
3231 .build ();
3332 private final Query query = new Query (repository );
Original file line number Diff line number Diff line change @@ -28,7 +28,7 @@ class Stats implements ColorAware {
2828
2929 private static final long ONE_SECOND = SECONDS .toNanos (1 );
3030 private static final long ONE_MINUTE = 60 * ONE_SECOND ;
31- private final Query query ;
31+ final Query query ;
3232 private final Locale locale ;
3333 private final List <Throwable > errors = new ArrayList <>();
3434 private Formats formats = ansi ();
You can’t perform that action at this time.
0 commit comments