diff --git a/stackviz/parser/tempest_subunit.py b/stackviz/parser/tempest_subunit.py index 1de5861..e0a0d49 100644 --- a/stackviz/parser/tempest_subunit.py +++ b/stackviz/parser/tempest_subunit.py @@ -153,6 +153,8 @@ def _descend(root, path): path_parts = path.split('.') path_parts.reverse() + root['name'] = path_parts.pop() + return _descend_recurse(root, path_parts)