From 5c8219f8f5ad75f7eec0ed13b50019f0ed009cb9 Mon Sep 17 00:00:00 2001 From: Siteshwar Vashisht Date: Fri, 6 Sep 2024 12:56:12 +0200 Subject: [PATCH] Use the term "findings" ... instead of "defects" in the downstream patches reports. Related: https://github.com/openscanhub/openscanhub/issues/297 Signed-off-by: Siteshwar Vashisht --- py/csmock | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/py/csmock b/py/csmock index b8c3ca3..e1fdef2 100755 --- a/py/csmock +++ b/py/csmock @@ -1330,13 +1330,13 @@ def do_diff_scan(props, output, diff_patches): # we are looking for defects in patches assert not props.skip_patches run0_props.skip_patches = True - title = "%s - Defects in Patches" % props.nvr + title = "%s - Findings in Patches" % props.nvr else: # this is a version-diff-build run0_props.srpm = run0_props.base_srpm run0_props.mock_profile = run0_props.base_mock_profile csdiff += " --ignore-path" - title = "%s - Defects not detected in %s" % (props.nvr, props.base_srpm) + title = "%s - Findings not detected in %s" % (props.nvr, props.base_srpm) run0 = "%s/run0" % results.resdir ec = do_scan(run0_props, run0)