We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fc08615 commit 8abc72cCopy full SHA for 8abc72c
Sources/XcbeautifyLib/Renderers/TerminalRenderer.swift
@@ -197,9 +197,9 @@ struct TerminalRenderer: OutputRendering {
197
198
func format(testSummary: TestSummary) -> String {
199
if testSummary.isSuccess() {
200
- return colored ? "Tests Passed: \(testSummary.description)".s.Bold.f.Green : "Tests Passed: \(testSummary.description)"
+ colored ? "Tests Passed: \(testSummary.description)".s.Bold.f.Green : "Tests Passed: \(testSummary.description)"
201
} else {
202
- return colored ? "Tests Failed: \(testSummary.description)".s.Bold.f.Red : "Tests Failed: \(testSummary.description)"
+ colored ? "Tests Failed: \(testSummary.description)".s.Bold.f.Red : "Tests Failed: \(testSummary.description)"
203
}
204
205
0 commit comments