From 8afb3395a2e26a72c571e1dd8dc47139cacbb125 Mon Sep 17 00:00:00 2001 From: Boris Kolpackov Date: Wed, 4 Dec 2024 08:57:25 +0200 Subject: Review --- mod/mod-ci-github-gh.cxx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'mod/mod-ci-github-gh.cxx') diff --git a/mod/mod-ci-github-gh.cxx b/mod/mod-ci-github-gh.cxx index a25e52c..99e19cc 100644 --- a/mod/mod-ci-github-gh.cxx +++ b/mod/mod-ci-github-gh.cxx @@ -53,15 +53,15 @@ namespace brep switch (rs) { case result_status::success: - return "SUCCESS"; + return "success"; case result_status::warning: - return warning_success ? "SUCCESS" : "FAILURE"; + return warning_success ? "success" : "failure"; case result_status::error: case result_status::abort: case result_status::abnormal: - return "FAILURE"; + return "failure"; // Valid values we should never encounter. // -- cgit v1.1