Skip to content

Commit 8abc72c

Browse files
committed
Format code
1 parent fc08615 commit 8abc72c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Sources/XcbeautifyLib/Renderers/TerminalRenderer.swift

+2-2
Original file line numberDiff line numberDiff line change
@@ -197,9 +197,9 @@ struct TerminalRenderer: OutputRendering {
197197

198198
func format(testSummary: TestSummary) -> String {
199199
if testSummary.isSuccess() {
200-
return colored ? "Tests Passed: \(testSummary.description)".s.Bold.f.Green : "Tests Passed: \(testSummary.description)"
200+
colored ? "Tests Passed: \(testSummary.description)".s.Bold.f.Green : "Tests Passed: \(testSummary.description)"
201201
} else {
202-
return colored ? "Tests Failed: \(testSummary.description)".s.Bold.f.Red : "Tests Failed: \(testSummary.description)"
202+
colored ? "Tests Failed: \(testSummary.description)".s.Bold.f.Red : "Tests Failed: \(testSummary.description)"
203203
}
204204
}
205205
}

0 commit comments

Comments
 (0)