Skip to content

Commit

Permalink
Fix config test
Browse files Browse the repository at this point in the history
  • Loading branch information
lkuchenb committed May 2, 2024
1 parent 1749282 commit ac99640
Showing 1 changed file with 0 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -33,17 +33,14 @@ def test_config():
"class_a": {
"class_d": {
"path": "class_a(class_b)>class_b(class_d)>class_d",
"allow_multiple": False,
},
"class_c": {
"path": "class_a(class_b)>class_b<(class_c)class_c",
"allow_multiple": True,
},
},
"class_b": {
"class_c": {
"path": "class_b<(class_c)class_c",
"allow_multiple": True,
}
},
}
Expand All @@ -53,21 +50,18 @@ def test_config():
target="class_d",
path=RelationPath(path_str="class_a(class_b)>class_b(class_d)>class_d"),
new_property="class_d",
allow_multiple=False,
),
InferenceInstruction(
source="class_a",
target="class_c",
path=RelationPath(path_str="class_a(class_b)>class_b<(class_c)class_c"),
new_property="class_c",
allow_multiple=True,
),
InferenceInstruction(
source="class_b",
target="class_c",
path=RelationPath(path_str="class_b<(class_c)class_c"),
new_property="class_c",
allow_multiple=True,
),
]

Expand Down

0 comments on commit ac99640

Please sign in to comment.