Skip to content

Commit 41f7ef4

Browse files
Update AbstractExecutionStage.java
fix the format issue which cause the fail Signed-off-by: serhatozdursun <[email protected]>
1 parent 6e2f85f commit 41f7ef4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/java/com/thoughtworks/gauge/execution/AbstractExecutionStage.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ public Spec.ProtoExecutionResult executeNext(Spec.ProtoExecutionResult previousS
2020
protected Spec.ProtoExecutionResult mergeExecResults(Spec.ProtoExecutionResult previousStageResult, Spec.ProtoExecutionResult execResult) {
2121
long execTime = execResult.getExecutionTime() + previousStageResult.getExecutionTime();
2222
boolean failed = execResult.getFailed() | previousStageResult.getFailed();
23-
boolean skipped = execResult.getSkipScenario() | previousStageResult.getSkipScenario() ;
23+
boolean skipped = execResult.getSkipScenario() | previousStageResult.getSkipScenario();
2424

2525
Spec.ProtoExecutionResult.Builder builder = Spec.ProtoExecutionResult.newBuilder();
2626
builder.setExecutionTime(execTime);

0 commit comments

Comments
 (0)