File tree 1 file changed +4
-1
lines changed
core/src/main/java/cucumber/runtime/formatter
1 file changed +4
-1
lines changed Original file line number Diff line number Diff line change 34
34
final class PrettyFormatter implements EventListener , ColorAware {
35
35
private static final String SCENARIO_INDENT = " " ;
36
36
private static final String STEP_INDENT = " " ;
37
+ private static final String STEP_SCENARIO_INDENT = " " ;
37
38
private static final String EXAMPLES_INDENT = " " ;
38
39
private final TestSourcesModel testSources = new TestSourcesModel ();
39
40
private final NiceAppendable out ;
@@ -150,7 +151,9 @@ private void handleTestStepFinished(TestStepFinished event) {
150
151
}
151
152
152
153
private void handleWrite (WriteEvent event ) {
153
- out .println (event .text );
154
+ out .println ();
155
+ out .println (STEP_SCENARIO_INDENT + event .text );
156
+ out .println ();
154
157
}
155
158
156
159
private void finishReport () {
You can’t perform that action at this time.
0 commit comments