Skip to content

Commit

Permalink
Add whitespace before UUID
Browse files Browse the repository at this point in the history
  • Loading branch information
ewuerger committed Jun 7, 2022
1 parent def7318 commit 1e80834
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion capellambse/model/crosslayer/fa.py
Original file line number Diff line number Diff line change
Expand Up @@ -164,7 +164,7 @@ class FunctionalChainInvolvementLink(c.GenericElement):

@property
def name(self) -> str: # type: ignore
return f"[{self.__class__.__name__}] to {self.involved.name}({self.involved.uuid})"
return f"[{self.__class__.__name__}] to {self.involved.name} ({self.involved.uuid})"


@c.xtype_handler(None)
Expand Down
2 changes: 1 addition & 1 deletion tests/test_model_layers.py
Original file line number Diff line number Diff line change
Expand Up @@ -519,7 +519,7 @@ def test_FunctionalChainInvolvementLink_attributes(
ex_item_uuids = [ex.uuid for ex in link.exchanged_items]
expected_uuids = ["1ca7b206-be29-4315-a036-0b532b26a191"]
expected_context = "This is a test context."
expected_end = f"{target.name}({target.uuid})"
expected_end = f"{target.name} ({target.uuid})"

assert link in chain.involvements
assert ex_item_uuids == expected_uuids
Expand Down

0 comments on commit 1e80834

Please sign in to comment.