Skip to content

Commit d5938bf

Browse files
committed
Update expected files again -> defaults to association
1 parent b526764 commit d5938bf

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

tests/pyreverse/functional/class_diagrams/aggregation/fields.mmd

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,8 @@ classDiagram
1616
}
1717
class P {
1818
}
19-
P --o A : x
20-
P --o B : x
21-
P --o C : x
19+
P --> A : x
2220
P --* D : x
2321
P --* E : x
22+
P --o B : x
23+
P --o C : x

tests/pyreverse/functional/class_diagrams/aggregation/fields.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ class P:
44
pass
55

66
class A:
7-
x: P # can't tell, so default to aggregation
7+
x: P # just type hint, no ownership, soassociation
88

99
class B:
1010
def __init__(self, x: P):

0 commit comments

Comments
 (0)