Skip to content

Commit fbbca18

Browse files
author
Jake Ginnivan
committed
Fixing #125 while I am at it
1 parent 813414a commit fbbca18

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

TestStack.BDDfy/Reporters/MarkDown/MarkDownReportBuilder.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ public string CreateReport(FileReportModel model)
5454
{
5555
report.AppendLine(string.Format("### {0}", scenario.Title));
5656

57-
foreach (var step in scenario.Steps)
57+
foreach (var step in scenario.Steps.Where(s => s.ShouldReport))
5858
report.AppendLine(" " + HttpUtility.HtmlEncode(step.Title) + " ");
5959

6060
report.AppendLine(); // separator

0 commit comments

Comments
 (0)