
Co-authored-by: Amélie Renard <44666826+amelie-renard-sonarsource@users.noreply.github.com>
7 lines
166 B
Plaintext
7 lines
166 B
Plaintext
[source,swift]
|
|
----
|
|
func getReadableStatus(job: Job) -> String {
|
|
return job.isRunning ? "Running" : job.hasErrors ? "Failed" : "Succeeded"; // Noncompliant
|
|
}
|
|
----
|