From 95f97efa7223a25f58cd460e7c0b7987f33fa0d8 Mon Sep 17 00:00:00 2001 From: Dion Moult Date: Tue, 21 Jul 2020 15:26:43 +1000 Subject: [PATCH] Minor fix --- src/ifcbimtester/features/steps/steps.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ifcbimtester/features/steps/steps.py b/src/ifcbimtester/features/steps/steps.py index a638a35b64..ab4281b812 100644 --- a/src/ifcbimtester/features/steps/steps.py +++ b/src/ifcbimtester/features/steps/steps.py @@ -154,7 +154,7 @@ def step_impl(context, id, reason): element = IfcFile.get().by_id(id) except: return - assert False, 'This element\'s existence should be reevaluated.' + assert False, 'This element {} should be reevaluated.'.format(element) @step(u'there is at least one {ifc_class} element')