Skip to content

Commit

Permalink
Fix variable name in template
Browse files Browse the repository at this point in the history
  • Loading branch information
gdonati78 committed Oct 20, 2023
1 parent efeaaac commit fe7d060
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions engine/src/main/resources/template/scenario-summary.ftl
Original file line number Diff line number Diff line change
Expand Up @@ -128,15 +128,15 @@ preheadlineLink=preheadlineLink>
skipped</a> <@common.status status="skipped"/>
</#if>
</li>
<#if isShowOnlyLastRuns() && hasNotFirstRunScenarios()>
<#if isShowOnlyLastRuns() && hasNotLastRunScenarios()>
<li class="list-group-item" data-cluecumber-item="scenario-summary">
Of which:
<br>
${totalNumberOfNotLastScenariosRuns} ${common.pluralizeFn("Scenario", totalNumberOfNotLastScenariosRuns)} were not first runs
</li>
</#if>
</ul>
<#if isShowOnlyLastRuns() && hasNotFirstRunScenarios()>
<#if isShowOnlyLastRuns() && hasNotLastRunScenarios()>
<button class="btn btn-outline-secondary btn-block collapsed" type="button" data-toggle="collapse"
aria-expanded="true" data-cluecumber-item="show-not-last-runs-button"
data-target=".notLastRun">not last runs
Expand Down

0 comments on commit fe7d060

Please sign in to comment.