From fe5a6749a7610ee5b6612d756a44cff8e632000b Mon Sep 17 00:00:00 2001 From: Carlos Dias <57261862+c4rlosdias@users.noreply.github.com> Date: Sun, 6 Aug 2023 08:11:31 -0300 Subject: [PATCH] Add element guId in BCF report (#3549) --- src/ifctester/ifctester/reporter.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ifctester/ifctester/reporter.py b/src/ifctester/ifctester/reporter.py index ae9e0cd479..0cac09d14d 100644 --- a/src/ifctester/ifctester/reporter.py +++ b/src/ifctester/ifctester/reporter.py @@ -342,7 +342,7 @@ class Bcf(Json): continue for failure in requirement["failed_entities"]: element = failure["element"] - title = f"{element.id()}/{element.is_a()}/" + title = f"ID:[{element.id()}]/GUID:[{element.GlobalId}]/{element.is_a()}/" title += getattr(element, "Name", None) or "Unnamed" title += " - " + failure.get("reason", "No reason") description = f'{specification["name"]} - {requirement["description"]}'