Skip to content

Commit

Permalink
fix: issue-1427
Browse files Browse the repository at this point in the history
  • Loading branch information
muming.zhouxi authored and onsi committed Jun 11, 2024
1 parent ff41e27 commit 628dbb9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -3639,7 +3639,7 @@ Given all this, we can rewrite our invalid `ReportAfterEach` example from above
ReportAfterSuite("custom report", func(report Report) {
f := os.Create("report.custom")
for _, specReport := range report.SpecReports {
fmt.Fprintf(f, "%s | %s\n", report.FullText(), specReport.State)
fmt.Fprintf(f, "%s | %s\n", specReport.FullText(), specReport.State)
}
f.Close()
})
Expand Down

0 comments on commit 628dbb9

Please sign in to comment.