Skip to content

Commit e87874f

Browse files
committed
Fix type error in relationship attribute validation
(IVS-454)
1 parent c750a47 commit e87874f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

features/steps/givens/relationships.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ def make_aggregate(val):
5454
yield ValidationOutcome(instance_id=inst, severity=OutcomeSeverity.ERROR)
5555

5656
if rel_attribute_name == attr_to_entity:
57-
if tail.strip():
57+
if str(tail).strip():
5858
instances.extend(to_other)
5959
else:
6060
instances.append(inst)

0 commit comments

Comments
 (0)